Enum AccountsPayableInvoices.ProcessState
- java.lang.Object
-
- java.lang.Enum<AccountsPayableInvoices.ProcessState>
-
- com.ellucian.generated.eedm.accounts_payable_invoices.v11_2_0.AccountsPayableInvoices.ProcessState
-
- All Implemented Interfaces:
Serializable,Comparable<AccountsPayableInvoices.ProcessState>
- Enclosing class:
- AccountsPayableInvoices
@Generated("jsonschema2pojo") public static enum AccountsPayableInvoices.ProcessState extends Enum<AccountsPayableInvoices.ProcessState>
Process StateThe current state of the processing of the invoice.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVEDAWAITING_RECEIPTIN_PROGRESSNOT_APPROVEDOUTSTANDINGPAIDRECONCILEDSUBMITTEDSUSPENDEDVOIDED
-
Constructor Summary
Constructors Modifier Constructor Description privateProcessState(String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccountsPayableInvoices.ProcessStatefromValue(String value)StringtoString()Stringvalue()static AccountsPayableInvoices.ProcessStatevalueOf(String name)Returns the enum constant of this type with the specified name.static AccountsPayableInvoices.ProcessState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IN_PROGRESS
public static final AccountsPayableInvoices.ProcessState IN_PROGRESS
-
SUSPENDED
public static final AccountsPayableInvoices.ProcessState SUSPENDED
-
SUBMITTED
public static final AccountsPayableInvoices.ProcessState SUBMITTED
-
AWAITING_RECEIPT
public static final AccountsPayableInvoices.ProcessState AWAITING_RECEIPT
-
NOT_APPROVED
public static final AccountsPayableInvoices.ProcessState NOT_APPROVED
-
APPROVED
public static final AccountsPayableInvoices.ProcessState APPROVED
-
OUTSTANDING
public static final AccountsPayableInvoices.ProcessState OUTSTANDING
-
PAID
public static final AccountsPayableInvoices.ProcessState PAID
-
RECONCILED
public static final AccountsPayableInvoices.ProcessState RECONCILED
-
VOIDED
public static final AccountsPayableInvoices.ProcessState VOIDED
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,AccountsPayableInvoices.ProcessState> CONSTANTS
-
-
Constructor Detail
-
ProcessState
private ProcessState(String value)
-
-
Method Detail
-
values
public static AccountsPayableInvoices.ProcessState[] 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.ProcessState c : AccountsPayableInvoices.ProcessState.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.ProcessState 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:
toStringin classEnum<AccountsPayableInvoices.ProcessState>
-
value
public String value()
-
fromValue
public static AccountsPayableInvoices.ProcessState fromValue(String value)
-
-