Package io.vertigo.orchestra.domain
Enum DtDefinitions.OActivityFields
- java.lang.Object
-
- java.lang.Enum<DtDefinitions.OActivityFields>
-
- io.vertigo.orchestra.domain.DtDefinitions.OActivityFields
-
- All Implemented Interfaces:
io.vertigo.datamodel.structure.definitions.DtFieldName<OActivity>
,Serializable
,Comparable<DtDefinitions.OActivityFields>
- Enclosing class:
- DtDefinitions
public static enum DtDefinitions.OActivityFields extends Enum<DtDefinitions.OActivityFields> implements io.vertigo.datamodel.structure.definitions.DtFieldName<OActivity>
Enumération des champs de OActivity.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description actId
Propriété 'Id Activité'.engine
Propriété 'Implémentation de l'activité'.label
Propriété 'Libellé de l'activité'.milestone
Propriété 'Jalon'.name
Propriété 'Nom de l'activité'.number
Propriété 'Numéro de l'activité'.proId
Propriété 'Processus'.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DtDefinitions.OActivityFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static DtDefinitions.OActivityFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
actId
public static final DtDefinitions.OActivityFields actId
Propriété 'Id Activité'.
-
name
public static final DtDefinitions.OActivityFields name
Propriété 'Nom de l'activité'.
-
label
public static final DtDefinitions.OActivityFields label
Propriété 'Libellé de l'activité'.
-
number
public static final DtDefinitions.OActivityFields number
Propriété 'Numéro de l'activité'.
-
milestone
public static final DtDefinitions.OActivityFields milestone
Propriété 'Jalon'.
-
engine
public static final DtDefinitions.OActivityFields engine
Propriété 'Implémentation de l'activité'.
-
proId
public static final DtDefinitions.OActivityFields proId
Propriété 'Processus'.
-
-
Method Detail
-
values
public static DtDefinitions.OActivityFields[] 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.OActivityFields c : DtDefinitions.OActivityFields.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.OActivityFields 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
-
-