Package com.exedio.cope.pattern
Enum DynamicModel.ValueType
- java.lang.Object
-
- java.lang.Enum<DynamicModel.ValueType>
-
- com.exedio.cope.pattern.DynamicModel.ValueType
-
- All Implemented Interfaces:
Serializable
,Comparable<DynamicModel.ValueType>
- Enclosing class:
- DynamicModel<L>
public static enum DynamicModel.ValueType extends Enum<DynamicModel.ValueType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<?>
getValueClass()
static DynamicModel.ValueType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DynamicModel.ValueType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final DynamicModel.ValueType STRING
-
BOOLEAN
public static final DynamicModel.ValueType BOOLEAN
-
INTEGER
public static final DynamicModel.ValueType INTEGER
-
DOUBLE
public static final DynamicModel.ValueType DOUBLE
-
ENUM
public static final DynamicModel.ValueType ENUM
-
-
Method Detail
-
values
public static DynamicModel.ValueType[] 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 (DynamicModel.ValueType c : DynamicModel.ValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DynamicModel.ValueType 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
-
getValueClass
public final Class<?> getValueClass()
-
-