Package com.intel.sgx.result
Enum SgxQlQvResult
- java.lang.Object
-
- java.lang.Enum<SgxQlQvResult>
-
- com.intel.sgx.result.SgxQlQvResult
-
- All Implemented Interfaces:
Serializable,Comparable<SgxQlQvResult>
public enum SgxQlQvResult extends Enum<SgxQlQvResult>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SgxQlQvResultfromStatus(int status)intgetQlQvResult()voidsetQlQvResult(int status)static SgxQlQvResultvalueOf(String name)Returns the enum constant of this type with the specified name.static SgxQlQvResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SGX_QL_QV_RESULT_OK
public static final SgxQlQvResult SGX_QL_QV_RESULT_OK
-
SGX_QL_QV_RESULT_MIN
public static final SgxQlQvResult SGX_QL_QV_RESULT_MIN
-
SGX_QL_QV_RESULT_CONFIG_NEEDED
public static final SgxQlQvResult SGX_QL_QV_RESULT_CONFIG_NEEDED
-
SGX_QL_QV_RESULT_OUT_OF_DATE
public static final SgxQlQvResult SGX_QL_QV_RESULT_OUT_OF_DATE
-
SGX_QL_QV_RESULT_OUT_OF_DATE_CONFIG_NEEDED
public static final SgxQlQvResult SGX_QL_QV_RESULT_OUT_OF_DATE_CONFIG_NEEDED
-
SGX_QL_QV_RESULT_INVALID_SIGNATURE
public static final SgxQlQvResult SGX_QL_QV_RESULT_INVALID_SIGNATURE
-
SGX_QL_QV_RESULT_REVOKED
public static final SgxQlQvResult SGX_QL_QV_RESULT_REVOKED
-
SGX_QL_QV_RESULT_UNSPECIFIED
public static final SgxQlQvResult SGX_QL_QV_RESULT_UNSPECIFIED
-
SGX_QL_QV_RESULT_SW_HARDENING_NEEDED
public static final SgxQlQvResult SGX_QL_QV_RESULT_SW_HARDENING_NEEDED
-
SGX_QL_QV_RESULT_CONFIG_AND_SW_HARDENING_NEEDED
public static final SgxQlQvResult SGX_QL_QV_RESULT_CONFIG_AND_SW_HARDENING_NEEDED
-
SGX_QL_QV_RESULT_MAX
public static final SgxQlQvResult SGX_QL_QV_RESULT_MAX
-
-
Method Detail
-
values
public static SgxQlQvResult[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SgxQlQvResult c : SgxQlQvResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SgxQlQvResult valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getQlQvResult
public int getQlQvResult()
-
setQlQvResult
public void setQlQvResult(int status)
-
fromStatus
public static SgxQlQvResult fromStatus(int status)
-
-