Package io.vertigo.orchestra.domain
Enum DtDefinitions.OExecutionStateFields
- java.lang.Object
-
- java.lang.Enum<DtDefinitions.OExecutionStateFields>
-
- io.vertigo.orchestra.domain.DtDefinitions.OExecutionStateFields
-
- All Implemented Interfaces:
io.vertigo.datamodel.structure.definitions.DtFieldName<OExecutionState>
,Serializable
,Comparable<DtDefinitions.OExecutionStateFields>
- Enclosing class:
- DtDefinitions
public static enum DtDefinitions.OExecutionStateFields extends Enum<DtDefinitions.OExecutionStateFields> implements io.vertigo.datamodel.structure.definitions.DtFieldName<OExecutionState>
Enumération des champs de OExecutionState.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DtDefinitions.OExecutionStateFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static DtDefinitions.OExecutionStateFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
estCd
public static final DtDefinitions.OExecutionStateFields estCd
Propriété 'Code'.
-
label
public static final DtDefinitions.OExecutionStateFields label
Propriété 'Libellé'.
-
-
Method Detail
-
values
public static DtDefinitions.OExecutionStateFields[] 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 (DtDefinitions.OExecutionStateFields c : DtDefinitions.OExecutionStateFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DtDefinitions.OExecutionStateFields 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
-
-