Enum RateClassType
- java.lang.Object
-
- java.lang.Enum<RateClassType>
-
- org.kuali.coeus.common.budget.api.rate.RateClassType
-
- All Implemented Interfaces:
Serializable,Comparable<RateClassType>
public enum RateClassType extends Enum<RateClassType>
This class represents different possible enumerations of RateClassType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMPLOYEE_BENEFITSINFLATIONLA_SALARIESLAB_ALLOCATIONOTHEROVERHEADVACATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetRateClassType()static RateClassTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RateClassType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFLATION
public static final RateClassType INFLATION
-
OVERHEAD
public static final RateClassType OVERHEAD
-
EMPLOYEE_BENEFITS
public static final RateClassType EMPLOYEE_BENEFITS
-
LAB_ALLOCATION
public static final RateClassType LAB_ALLOCATION
-
LA_SALARIES
public static final RateClassType LA_SALARIES
-
VACATION
public static final RateClassType VACATION
-
OTHER
public static final RateClassType OTHER
-
-
Method Detail
-
values
public static RateClassType[] 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 (RateClassType c : RateClassType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RateClassType 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
-
getRateClassType
public String getRateClassType()
-
-