Package io.vertigo.orchestra.domain
Enum DtDefinitions.OActivityExecutionUiFields
- java.lang.Object
-
- java.lang.Enum<DtDefinitions.OActivityExecutionUiFields>
-
- io.vertigo.orchestra.domain.DtDefinitions.OActivityExecutionUiFields
-
- All Implemented Interfaces:
io.vertigo.datamodel.structure.definitions.DtFieldName<OActivityExecutionUi>
,Serializable
,Comparable<DtDefinitions.OActivityExecutionUiFields>
- Enclosing class:
- DtDefinitions
public static enum DtDefinitions.OActivityExecutionUiFields extends Enum<DtDefinitions.OActivityExecutionUiFields> implements io.vertigo.datamodel.structure.definitions.DtFieldName<OActivityExecutionUi>
Enumération des champs de OActivityExecutionUi.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description aceId
Propriété 'Id de l'activité'.beginTime
Propriété 'Démarrage'.endTime
Propriété 'Fin'.executionTime
Propriété 'Durée'.hasAttachment
Propriété 'Fichier de log'.hasTechnicalLog
Propriété 'Log technique'.label
Propriété 'Libellé'.status
Propriété 'Statut'.workspaceIn
Propriété 'Paramètres entrants'.workspaceOut
Propriété 'Paramètres sortants'.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DtDefinitions.OActivityExecutionUiFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static DtDefinitions.OActivityExecutionUiFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
aceId
public static final DtDefinitions.OActivityExecutionUiFields aceId
Propriété 'Id de l'activité'.
-
label
public static final DtDefinitions.OActivityExecutionUiFields label
Propriété 'Libellé'.
-
beginTime
public static final DtDefinitions.OActivityExecutionUiFields beginTime
Propriété 'Démarrage'.
-
endTime
public static final DtDefinitions.OActivityExecutionUiFields endTime
Propriété 'Fin'.
-
executionTime
public static final DtDefinitions.OActivityExecutionUiFields executionTime
Propriété 'Durée'.
-
status
public static final DtDefinitions.OActivityExecutionUiFields status
Propriété 'Statut'.
-
workspaceIn
public static final DtDefinitions.OActivityExecutionUiFields workspaceIn
Propriété 'Paramètres entrants'.
-
workspaceOut
public static final DtDefinitions.OActivityExecutionUiFields workspaceOut
Propriété 'Paramètres sortants'.
-
hasAttachment
public static final DtDefinitions.OActivityExecutionUiFields hasAttachment
Propriété 'Fichier de log'.
-
hasTechnicalLog
public static final DtDefinitions.OActivityExecutionUiFields hasTechnicalLog
Propriété 'Log technique'.
-
-
Method Detail
-
values
public static DtDefinitions.OActivityExecutionUiFields[] 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.OActivityExecutionUiFields c : DtDefinitions.OActivityExecutionUiFields.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.OActivityExecutionUiFields 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
-
-