Package io.keikai.model
Enum SCFValueObject.CFValueObjectType
- java.lang.Object
-
- java.lang.Enum<SCFValueObject.CFValueObjectType>
-
- io.keikai.model.SCFValueObject.CFValueObjectType
-
- All Implemented Interfaces:
Serializable
,Comparable<SCFValueObject.CFValueObjectType>
- Enclosing interface:
- SCFValueObject
public static enum SCFValueObject.CFValueObjectType extends Enum<SCFValueObject.CFValueObjectType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SCFValueObject.CFValueObjectType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SCFValueObject.CFValueObjectType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NUM
public static final SCFValueObject.CFValueObjectType NUM
-
PERCENT
public static final SCFValueObject.CFValueObjectType PERCENT
-
MAX
public static final SCFValueObject.CFValueObjectType MAX
-
MIN
public static final SCFValueObject.CFValueObjectType MIN
-
FORMULA
public static final SCFValueObject.CFValueObjectType FORMULA
-
PERCENTILE
public static final SCFValueObject.CFValueObjectType PERCENTILE
-
AUTOMIN
public static final SCFValueObject.CFValueObjectType AUTOMIN
-
AUTOMAX
public static final SCFValueObject.CFValueObjectType AUTOMAX
-
-
Field Detail
-
name
public final String name
-
value
public final int value
-
-
Method Detail
-
values
public static SCFValueObject.CFValueObjectType[] 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 (SCFValueObject.CFValueObjectType c : SCFValueObject.CFValueObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SCFValueObject.CFValueObjectType 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
-
-