Package com.tech.app.models
Enum ModelProperties.MODEL_PROPS
- java.lang.Object
-
- java.lang.Enum<ModelProperties.MODEL_PROPS>
-
- com.tech.app.models.ModelProperties.MODEL_PROPS
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ModelProperties.MODEL_PROPS>
- Enclosing class:
- ModelProperties
public static enum ModelProperties.MODEL_PROPS extends java.lang.Enum<ModelProperties.MODEL_PROPS>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOCAGE
BORNITUDE
NONE
REPETITIVITE
REVERSIBILITE
VIVACITE
-
Constructor Summary
Constructors Modifier Constructor Description private
MODEL_PROPS()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModelProperties.MODEL_PROPS
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ModelProperties.MODEL_PROPS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ModelProperties.MODEL_PROPS NONE
-
BORNITUDE
public static final ModelProperties.MODEL_PROPS BORNITUDE
-
VIVACITE
public static final ModelProperties.MODEL_PROPS VIVACITE
-
REVERSIBILITE
public static final ModelProperties.MODEL_PROPS REVERSIBILITE
-
REPETITIVITE
public static final ModelProperties.MODEL_PROPS REPETITIVITE
-
BLOCAGE
public static final ModelProperties.MODEL_PROPS BLOCAGE
-
-
Method Detail
-
values
public static ModelProperties.MODEL_PROPS[] 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 (ModelProperties.MODEL_PROPS c : ModelProperties.MODEL_PROPS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModelProperties.MODEL_PROPS valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-