Enum LedgerActivities.LedgerCategory
- java.lang.Object
-
- java.lang.Enum<LedgerActivities.LedgerCategory>
-
- com.ellucian.generated.eedm.ledger_activities.v11_0.LedgerActivities.LedgerCategory
-
- All Implemented Interfaces:
Serializable
,Comparable<LedgerActivities.LedgerCategory>
- Enclosing class:
- LedgerActivities
@Generated("jsonschema2pojo") public static enum LedgerActivities.LedgerCategory extends Enum<LedgerActivities.LedgerCategory>
Ledger CategoryThe ledger category associated with the activity.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNTED_BUDGET
ACTUALS
BUDGET_ADJUSTMENT
ENCUMBRANCE
ORIGINAL_BUDGET
RESERVATION
TEMPORARY_BUDGET
-
Constructor Summary
Constructors Modifier Constructor Description private
LedgerCategory(String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LedgerActivities.LedgerCategory
fromValue(String value)
String
toString()
String
value()
static LedgerActivities.LedgerCategory
valueOf(String name)
Returns the enum constant of this type with the specified name.static LedgerActivities.LedgerCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORIGINAL_BUDGET
public static final LedgerActivities.LedgerCategory ORIGINAL_BUDGET
-
BUDGET_ADJUSTMENT
public static final LedgerActivities.LedgerCategory BUDGET_ADJUSTMENT
-
ACTUALS
public static final LedgerActivities.LedgerCategory ACTUALS
-
ENCUMBRANCE
public static final LedgerActivities.LedgerCategory ENCUMBRANCE
-
RESERVATION
public static final LedgerActivities.LedgerCategory RESERVATION
-
ACCOUNTED_BUDGET
public static final LedgerActivities.LedgerCategory ACCOUNTED_BUDGET
-
TEMPORARY_BUDGET
public static final LedgerActivities.LedgerCategory TEMPORARY_BUDGET
-
-
Field Detail
-
value
private final String value
-
CONSTANTS
private static final Map<String,LedgerActivities.LedgerCategory> CONSTANTS
-
-
Constructor Detail
-
LedgerCategory
private LedgerCategory(String value)
-
-
Method Detail
-
values
public static LedgerActivities.LedgerCategory[] 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 (LedgerActivities.LedgerCategory c : LedgerActivities.LedgerCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LedgerActivities.LedgerCategory 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<LedgerActivities.LedgerCategory>
-
value
public String value()
-
fromValue
public static LedgerActivities.LedgerCategory fromValue(String value)
-
-