Package org.stellar.anchor.model
Enum Sep24Transaction.Status
- java.lang.Object
-
- java.lang.Enum<Sep24Transaction.Status>
-
- org.stellar.anchor.model.Sep24Transaction.Status
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Sep24Transaction.Status>
- Enclosing interface:
- Sep24Transaction
public static enum Sep24Transaction.Status extends java.lang.Enum<Sep24Transaction.Status>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()java.lang.StringtoString()static Sep24Transaction.StatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Sep24Transaction.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PENDING_ANCHOR
public static final Sep24Transaction.Status PENDING_ANCHOR
-
PENDING_TRUST
public static final Sep24Transaction.Status PENDING_TRUST
-
PENDING_USER
public static final Sep24Transaction.Status PENDING_USER
-
PENDING_USR_TRANSFER_START
public static final Sep24Transaction.Status PENDING_USR_TRANSFER_START
-
PENDING_USR_TRANSFER_COMPLETE
public static final Sep24Transaction.Status PENDING_USR_TRANSFER_COMPLETE
-
INCOMPLETE
public static final Sep24Transaction.Status INCOMPLETE
-
NO_MARKET
public static final Sep24Transaction.Status NO_MARKET
-
TOO_SMALL
public static final Sep24Transaction.Status TOO_SMALL
-
TOO_LARGE
public static final Sep24Transaction.Status TOO_LARGE
-
PENDING_SENDER
public static final Sep24Transaction.Status PENDING_SENDER
-
PENDING_RECEIVER
public static final Sep24Transaction.Status PENDING_RECEIVER
-
PENDING_TRANSACTION_INFO_UPDATE
public static final Sep24Transaction.Status PENDING_TRANSACTION_INFO_UPDATE
-
PENDING_CUSTOMER_INFO_UPDATE
public static final Sep24Transaction.Status PENDING_CUSTOMER_INFO_UPDATE
-
COMPLETED
public static final Sep24Transaction.Status COMPLETED
-
ERROR
public static final Sep24Transaction.Status ERROR
-
PENDING_EXTERNAL
public static final Sep24Transaction.Status PENDING_EXTERNAL
-
PENDING_STELLAR
public static final Sep24Transaction.Status PENDING_STELLAR
-
-
Method Detail
-
values
public static Sep24Transaction.Status[] 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 (Sep24Transaction.Status c : Sep24Transaction.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Sep24Transaction.Status 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Sep24Transaction.Status>
-
getDescription
public java.lang.String getDescription()
-
-