Package io.vertigo.orchestra.definitions
Enum OrchestraSmartTypes
- java.lang.Object
-
- java.lang.Enum<OrchestraSmartTypes>
-
- io.vertigo.orchestra.definitions.OrchestraSmartTypes
-
- All Implemented Interfaces:
Serializable
,Comparable<OrchestraSmartTypes>
public enum OrchestraSmartTypes extends Enum<OrchestraSmartTypes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OBooleen
OClasse
OCodeIdentifiant
OIdentifiant
OJsonText
OLibelle
OMetadatas
ONombre
OText
OTimestamp
OToken
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OrchestraSmartTypes
valueOf(String name)
Returns the enum constant of this type with the specified name.static OrchestraSmartTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OIdentifiant
public static final OrchestraSmartTypes OIdentifiant
-
OCodeIdentifiant
public static final OrchestraSmartTypes OCodeIdentifiant
-
OLibelle
public static final OrchestraSmartTypes OLibelle
-
OToken
public static final OrchestraSmartTypes OToken
-
OClasse
public static final OrchestraSmartTypes OClasse
-
OBooleen
public static final OrchestraSmartTypes OBooleen
-
OTimestamp
public static final OrchestraSmartTypes OTimestamp
-
ONombre
public static final OrchestraSmartTypes ONombre
-
OJsonText
public static final OrchestraSmartTypes OJsonText
-
OMetadatas
public static final OrchestraSmartTypes OMetadatas
-
OText
public static final OrchestraSmartTypes OText
-
-
Method Detail
-
values
public static OrchestraSmartTypes[] 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 (OrchestraSmartTypes c : OrchestraSmartTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OrchestraSmartTypes 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
-
-