public enum DefaultBlockParameterName extends java.lang.Enum<DefaultBlockParameterName> implements DefaultBlockParameter
| Enum Constant and Description |
|---|
ACCEPTED |
EARLIEST |
FINALIZED |
LATEST |
PENDING |
SAFE |
| Modifier and Type | Method and Description |
|---|---|
static DefaultBlockParameterName |
fromString(java.lang.String name) |
java.lang.String |
getValue() |
static DefaultBlockParameterName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefaultBlockParameterName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfvalueOfpublic static final DefaultBlockParameterName EARLIEST
public static final DefaultBlockParameterName LATEST
public static final DefaultBlockParameterName PENDING
public static final DefaultBlockParameterName FINALIZED
public static final DefaultBlockParameterName SAFE
public static final DefaultBlockParameterName ACCEPTED
public static DefaultBlockParameterName[] values()
for (DefaultBlockParameterName c : DefaultBlockParameterName.values()) System.out.println(c);
public static DefaultBlockParameterName valueOf(java.lang.String name)
valueOf in interface DefaultBlockParametername - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
getValue in interface DefaultBlockParameterpublic static DefaultBlockParameterName fromString(java.lang.String name)