public static enum AbstractTxn.ClearedStatus extends java.lang.Enum<AbstractTxn.ClearedStatus>
Enum Constant and Description |
---|
CLEARED |
RECONCILING |
UNRECONCILED |
Modifier and Type | Method and Description |
---|---|
static AbstractTxn.ClearedStatus |
statusForByte(byte newStatusByte) |
static AbstractTxn.ClearedStatus |
statusForString(java.lang.String str) |
static AbstractTxn.ClearedStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractTxn.ClearedStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractTxn.ClearedStatus CLEARED
public static final AbstractTxn.ClearedStatus RECONCILING
public static final AbstractTxn.ClearedStatus UNRECONCILED
public static AbstractTxn.ClearedStatus[] values()
for (AbstractTxn.ClearedStatus c : AbstractTxn.ClearedStatus.values()) System.out.println(c);
public static AbstractTxn.ClearedStatus valueOf(java.lang.String name)
name
- 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 static AbstractTxn.ClearedStatus statusForString(java.lang.String str)
public static AbstractTxn.ClearedStatus statusForByte(byte newStatusByte)