Enum KeyContexts.InternalBlockSyntaxValidity
- java.lang.Object
-
- java.lang.Enum<KeyContexts.InternalBlockSyntaxValidity>
-
- com.h2tcoin.takamakachain.globalContext.KeyContexts.InternalBlockSyntaxValidity
-
- All Implemented Interfaces:
Serializable
,Comparable<KeyContexts.InternalBlockSyntaxValidity>
- Enclosing class:
- KeyContexts
public static enum KeyContexts.InternalBlockSyntaxValidity extends Enum<KeyContexts.InternalBlockSyntaxValidity>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NULL_IBB
NULL_MANDATORY_FIELD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyContexts.InternalBlockSyntaxValidity
valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyContexts.InternalBlockSyntaxValidity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NULL_MANDATORY_FIELD
public static final KeyContexts.InternalBlockSyntaxValidity NULL_MANDATORY_FIELD
-
NULL_IBB
public static final KeyContexts.InternalBlockSyntaxValidity NULL_IBB
-
-
Method Detail
-
values
public static KeyContexts.InternalBlockSyntaxValidity[] 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 (KeyContexts.InternalBlockSyntaxValidity c : KeyContexts.InternalBlockSyntaxValidity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyContexts.InternalBlockSyntaxValidity 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
-
-