Enum AccountFundsAvailable.FundsAvailable
- java.lang.Object
-
- java.lang.Enum<AccountFundsAvailable.FundsAvailable>
-
- com.ellucian.generated.eedm.account_funds_available.v8_0.AccountFundsAvailable.FundsAvailable
-
- All Implemented Interfaces:
Serializable
,Comparable<AccountFundsAvailable.FundsAvailable>
- Enclosing class:
- AccountFundsAvailable
@Generated("jsonschema2pojo") public static enum AccountFundsAvailable.FundsAvailable extends Enum<AccountFundsAvailable.FundsAvailable>
Funds AvailableStatus of the availability of funds.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVAILABLE
INVALID_ACCOUNTING_STRING
NOT_APPLICABLE
NOT_AVAILABLE
OVERRIDE_AVAILABLE
WARNING
-
Constructor Summary
Constructors Modifier Constructor Description private
FundsAvailable(String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccountFundsAvailable.FundsAvailable
fromValue(String value)
String
toString()
String
value()
static AccountFundsAvailable.FundsAvailable
valueOf(String name)
Returns the enum constant of this type with the specified name.static AccountFundsAvailable.FundsAvailable[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVAILABLE
public static final AccountFundsAvailable.FundsAvailable AVAILABLE
-
NOT_AVAILABLE
public static final AccountFundsAvailable.FundsAvailable NOT_AVAILABLE
-
OVERRIDE_AVAILABLE
public static final AccountFundsAvailable.FundsAvailable OVERRIDE_AVAILABLE
-
INVALID_ACCOUNTING_STRING
public static final AccountFundsAvailable.FundsAvailable INVALID_ACCOUNTING_STRING
-
NOT_APPLICABLE
public static final AccountFundsAvailable.FundsAvailable NOT_APPLICABLE
-
WARNING
public static final AccountFundsAvailable.FundsAvailable WARNING
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,AccountFundsAvailable.FundsAvailable> CONSTANTS
-
-
Constructor Detail
-
FundsAvailable
private FundsAvailable(String value)
-
-
Method Detail
-
values
public static AccountFundsAvailable.FundsAvailable[] 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 (AccountFundsAvailable.FundsAvailable c : AccountFundsAvailable.FundsAvailable.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountFundsAvailable.FundsAvailable 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<AccountFundsAvailable.FundsAvailable>
-
value
public String value()
-
fromValue
public static AccountFundsAvailable.FundsAvailable fromValue(String value)
-
-