Enum KeyContexts.AddressAssignment
- java.lang.Object
-
- java.lang.Enum<KeyContexts.AddressAssignment>
-
- com.h2tcoin.takamakachain.globalContext.KeyContexts.AddressAssignment
-
- All Implemented Interfaces:
Serializable
,Comparable<KeyContexts.AddressAssignment>
- Enclosing class:
- KeyContexts
public static enum KeyContexts.AddressAssignment extends Enum<KeyContexts.AddressAssignment>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CORRUPTED
DUPLICATED
DUPLICATED_ASSIGNMENT_TO_MAIN
INVALID
LOOP_ASSIGNMENT
MAIN_USED_INSTEAD_OF_OVERFLOW
OVERFLOW_USED_INSTEAD_OF_MAIN
UNREGISTERED_ADDRESS_MAIN
UNREGISTERED_ADDRESS_OVERFLOW
VALID
VALID_SYNTAX
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyContexts.AddressAssignment
valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyContexts.AddressAssignment[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALID
public static final KeyContexts.AddressAssignment VALID
-
VALID_SYNTAX
public static final KeyContexts.AddressAssignment VALID_SYNTAX
-
INVALID
public static final KeyContexts.AddressAssignment INVALID
-
DUPLICATED
public static final KeyContexts.AddressAssignment DUPLICATED
-
LOOP_ASSIGNMENT
public static final KeyContexts.AddressAssignment LOOP_ASSIGNMENT
-
DUPLICATED_ASSIGNMENT_TO_MAIN
public static final KeyContexts.AddressAssignment DUPLICATED_ASSIGNMENT_TO_MAIN
-
CORRUPTED
public static final KeyContexts.AddressAssignment CORRUPTED
-
UNREGISTERED_ADDRESS_MAIN
public static final KeyContexts.AddressAssignment UNREGISTERED_ADDRESS_MAIN
-
UNREGISTERED_ADDRESS_OVERFLOW
public static final KeyContexts.AddressAssignment UNREGISTERED_ADDRESS_OVERFLOW
-
OVERFLOW_USED_INSTEAD_OF_MAIN
public static final KeyContexts.AddressAssignment OVERFLOW_USED_INSTEAD_OF_MAIN
-
MAIN_USED_INSTEAD_OF_OVERFLOW
public static final KeyContexts.AddressAssignment MAIN_USED_INSTEAD_OF_OVERFLOW
-
-
Method Detail
-
values
public static KeyContexts.AddressAssignment[] 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.AddressAssignment c : KeyContexts.AddressAssignment.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.AddressAssignment 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
-
-