Enum AccountsPayableInvoices.PaymentStatus
- java.lang.Object
-
- java.lang.Enum<AccountsPayableInvoices.PaymentStatus>
-
- com.ellucian.generated.eedm.accounts_payable_invoices.v11_3_0.AccountsPayableInvoices.PaymentStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<AccountsPayableInvoices.PaymentStatus>
- Enclosing class:
- AccountsPayableInvoices
@Generated("jsonschema2pojo") public static enum AccountsPayableInvoices.PaymentStatus extends Enum<AccountsPayableInvoices.PaymentStatus>
Payment StatusAn indicator specifying if payment for the invoice is on hold.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
PaymentStatus(String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccountsPayableInvoices.PaymentStatus
fromValue(String value)
String
toString()
String
value()
static AccountsPayableInvoices.PaymentStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static AccountsPayableInvoices.PaymentStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HOLD
public static final AccountsPayableInvoices.PaymentStatus HOLD
-
NO_HOLD
public static final AccountsPayableInvoices.PaymentStatus NO_HOLD
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,AccountsPayableInvoices.PaymentStatus> CONSTANTS
-
-
Constructor Detail
-
PaymentStatus
private PaymentStatus(String value)
-
-
Method Detail
-
values
public static AccountsPayableInvoices.PaymentStatus[] 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 (AccountsPayableInvoices.PaymentStatus c : AccountsPayableInvoices.PaymentStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountsPayableInvoices.PaymentStatus 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<AccountsPayableInvoices.PaymentStatus>
-
value
public String value()
-
fromValue
public static AccountsPayableInvoices.PaymentStatus fromValue(String value)
-
-