Package tss.tpm
Enum ImplementationConstants._N
- java.lang.Object
-
- java.lang.Enum<ImplementationConstants._N>
-
- tss.tpm.ImplementationConstants._N
-
- All Implemented Interfaces:
Serializable
,Comparable<ImplementationConstants._N>
- Enclosing class:
- ImplementationConstants
public static enum ImplementationConstants._N extends Enum<ImplementationConstants._N>
Values from enum _N are only intended to be used in case labels of a switch statement using the result of this.asEnum() method as the switch condition. However, their Java names are identical to those of the constants defined in this class further below, so for any other usage just prepend them with the ImplementationConstants. qualifier.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImplementationConstants._N
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImplementationConstants._N[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Ossl
public static final ImplementationConstants._N Ossl
-
Ltc
public static final ImplementationConstants._N Ltc
-
Msbn
public static final ImplementationConstants._N Msbn
-
Symcrypt
public static final ImplementationConstants._N Symcrypt
-
HASH_COUNT
public static final ImplementationConstants._N HASH_COUNT
-
MAX_SYM_KEY_BITS
public static final ImplementationConstants._N MAX_SYM_KEY_BITS
-
MAX_SYM_KEY_BYTES
public static final ImplementationConstants._N MAX_SYM_KEY_BYTES
-
MAX_SYM_BLOCK_SIZE
public static final ImplementationConstants._N MAX_SYM_BLOCK_SIZE
-
MAX_CAP_CC
public static final ImplementationConstants._N MAX_CAP_CC
-
MAX_RSA_KEY_BYTES
public static final ImplementationConstants._N MAX_RSA_KEY_BYTES
-
MAX_AES_KEY_BYTES
public static final ImplementationConstants._N MAX_AES_KEY_BYTES
-
MAX_ECC_KEY_BYTES
public static final ImplementationConstants._N MAX_ECC_KEY_BYTES
-
LABEL_MAX_BUFFER
public static final ImplementationConstants._N LABEL_MAX_BUFFER
-
_TPM_CAP_SIZE
public static final ImplementationConstants._N _TPM_CAP_SIZE
-
MAX_CAP_DATA
public static final ImplementationConstants._N MAX_CAP_DATA
-
MAX_CAP_ALGS
public static final ImplementationConstants._N MAX_CAP_ALGS
-
MAX_CAP_HANDLES
public static final ImplementationConstants._N MAX_CAP_HANDLES
-
MAX_TPM_PROPERTIES
public static final ImplementationConstants._N MAX_TPM_PROPERTIES
-
MAX_PCR_PROPERTIES
public static final ImplementationConstants._N MAX_PCR_PROPERTIES
-
MAX_ECC_CURVES
public static final ImplementationConstants._N MAX_ECC_CURVES
-
MAX_TAGGED_POLICIES
public static final ImplementationConstants._N MAX_TAGGED_POLICIES
-
MAX_AC_CAPABILITIES
public static final ImplementationConstants._N MAX_AC_CAPABILITIES
-
MAX_ACT_DATA
public static final ImplementationConstants._N MAX_ACT_DATA
-
-
Method Detail
-
values
public static ImplementationConstants._N[] 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 (ImplementationConstants._N c : ImplementationConstants._N.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImplementationConstants._N 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
-
-