Package io.vertigo.orchestra.domain
Enum DtDefinitions.ONodeFields
- java.lang.Object
-
- java.lang.Enum<DtDefinitions.ONodeFields>
-
- io.vertigo.orchestra.domain.DtDefinitions.ONodeFields
-
- All Implemented Interfaces:
io.vertigo.datamodel.structure.definitions.DtFieldName<ONode>
,Serializable
,Comparable<DtDefinitions.ONodeFields>
- Enclosing class:
- DtDefinitions
public static enum DtDefinitions.ONodeFields extends Enum<DtDefinitions.ONodeFields> implements io.vertigo.datamodel.structure.definitions.DtFieldName<ONode>
Enumération des champs de ONode.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DtDefinitions.ONodeFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static DtDefinitions.ONodeFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
nodId
public static final DtDefinitions.ONodeFields nodId
Propriété 'Id du noeud'.
-
name
public static final DtDefinitions.ONodeFields name
Propriété 'Nom du noeud'.
-
heartbeat
public static final DtDefinitions.ONodeFields heartbeat
Propriété 'Date de dernière activité'.
-
-
Method Detail
-
values
public static DtDefinitions.ONodeFields[] 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.ONodeFields c : DtDefinitions.ONodeFields.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.ONodeFields 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
-
-