public static enum TPM_EO._N extends Enum<TPM_EO._N>
| Enum Constant and Description |
|---|
BITCLEAR
All bits SET in B are CLEAR in A.
|
BITSET
All bits SET in B are SET in A.
|
EQ
A = B
|
NEQ
A B
|
SIGNED_GE
A B signed
|
SIGNED_GT
A ) B signed
|
SIGNED_LE
A B signed
|
SIGNED_LT
A ( B signed
|
UNSIGNED_GE
A B unsigned
|
UNSIGNED_GT
A ) B unsigned
|
UNSIGNED_LE
A B unsigned
|
UNSIGNED_LT
A ( B unsigned
|
| Modifier and Type | Method and Description |
|---|---|
static TPM_EO._N |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TPM_EO._N[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPM_EO._N EQ
public static final TPM_EO._N NEQ
public static final TPM_EO._N SIGNED_GT
public static final TPM_EO._N UNSIGNED_GT
public static final TPM_EO._N SIGNED_LT
public static final TPM_EO._N UNSIGNED_LT
public static final TPM_EO._N SIGNED_GE
public static final TPM_EO._N UNSIGNED_GE
public static final TPM_EO._N SIGNED_LE
public static final TPM_EO._N UNSIGNED_LE
public static final TPM_EO._N BITSET
public static final TPM_EO._N BITCLEAR
public static TPM_EO._N[] values()
for (TPM_EO._N c : TPM_EO._N.values()) System.out.println(c);
public static TPM_EO._N valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.