Enum AbstractTxn.ClearedStatus
- java.lang.Object
-
- java.lang.Enum<AbstractTxn.ClearedStatus>
-
- com.infinitekind.moneydance.model.AbstractTxn.ClearedStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AbstractTxn.ClearedStatus>
- Enclosing class:
- AbstractTxn
public static enum AbstractTxn.ClearedStatus extends java.lang.Enum<AbstractTxn.ClearedStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEARED
RECONCILING
UNRECONCILED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
CLEARED
public static final AbstractTxn.ClearedStatus CLEARED
-
RECONCILING
public static final AbstractTxn.ClearedStatus RECONCILING
-
UNRECONCILED
public static final AbstractTxn.ClearedStatus UNRECONCILED
-
-
Method Detail
-
values
public static AbstractTxn.ClearedStatus[] 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 (AbstractTxn.ClearedStatus c : AbstractTxn.ClearedStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractTxn.ClearedStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
statusForString
public static AbstractTxn.ClearedStatus statusForString(java.lang.String str)
-
statusForByte
public static AbstractTxn.ClearedStatus statusForByte(byte newStatusByte)
-
-