Enum KeyContexts.SysProps
- java.lang.Object
-
- java.lang.Enum<KeyContexts.SysProps>
-
- com.h2tcoin.takamakachain.globalContext.KeyContexts.SysProps
-
- All Implemented Interfaces:
Serializable
,Comparable<KeyContexts.SysProps>
- Enclosing class:
- KeyContexts
public static enum KeyContexts.SysProps extends Enum<KeyContexts.SysProps>
state properties
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyContexts.SysProps
valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyContexts.SysProps[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EPOCH
public static final KeyContexts.SysProps EPOCH
-
SLOT
public static final KeyContexts.SysProps SLOT
-
BLOCK_HASH
public static final KeyContexts.SysProps BLOCK_HASH
-
CURRENT_DATABASE
public static final KeyContexts.SysProps CURRENT_DATABASE
-
CHAIN_WEIGHT
public static final KeyContexts.SysProps CHAIN_WEIGHT
-
IS_FIRST_BLOCK
public static final KeyContexts.SysProps IS_FIRST_BLOCK
-
CURRENT_STATE_TIME
public static final KeyContexts.SysProps CURRENT_STATE_TIME
-
DATABASE_NAME
public static final KeyContexts.SysProps DATABASE_NAME
-
CURRENT_EPOCH_SLOT_WEIGHT
public static final KeyContexts.SysProps CURRENT_EPOCH_SLOT_WEIGHT
-
NEXT_EPOCH_SLOT_WEIGHT
public static final KeyContexts.SysProps NEXT_EPOCH_SLOT_WEIGHT
-
CURRENT_EPOCH_SLOT_DISTRIBUTION
public static final KeyContexts.SysProps CURRENT_EPOCH_SLOT_DISTRIBUTION
-
NEXT_EPOCH_SLOT_DISTRIBUTION
public static final KeyContexts.SysProps NEXT_EPOCH_SLOT_DISTRIBUTION
-
WORLD_INIT_TIME
public static final KeyContexts.SysProps WORLD_INIT_TIME
-
IS_SKIPPED_STATE
public static final KeyContexts.SysProps IS_SKIPPED_STATE
-
-
Method Detail
-
values
public static KeyContexts.SysProps[] 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.SysProps c : KeyContexts.SysProps.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.SysProps 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
-
-