Enum PaymentTransactions.Status
- java.lang.Object
-
- java.lang.Enum<PaymentTransactions.Status>
-
- com.ellucian.generated.eedm.payment_transactions.v12_0.PaymentTransactions.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<PaymentTransactions.Status>
- Enclosing class:
- PaymentTransactions
@Generated("jsonschema2pojo") public static enum PaymentTransactions.Status extends Enum<PaymentTransactions.Status>
StatusThe status of the payment transaction.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OUTSTANDING
RECONCILED
VOID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PaymentTransactions.Status
fromValue(String value)
String
toString()
String
value()
static PaymentTransactions.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static PaymentTransactions.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RECONCILED
public static final PaymentTransactions.Status RECONCILED
-
OUTSTANDING
public static final PaymentTransactions.Status OUTSTANDING
-
VOID
public static final PaymentTransactions.Status VOID
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,PaymentTransactions.Status> CONSTANTS
-
-
Constructor Detail
-
Status
private Status(String value)
-
-
Method Detail
-
values
public static PaymentTransactions.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 (PaymentTransactions.Status c : PaymentTransactions.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 PaymentTransactions.Status 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<PaymentTransactions.Status>
-
value
public String value()
-
fromValue
public static PaymentTransactions.Status fromValue(String value)
-
-