Package io.vertigo.orchestra.domain
Enum DtDefinitions.OUserFields
- java.lang.Object
-
- java.lang.Enum<DtDefinitions.OUserFields>
-
- io.vertigo.orchestra.domain.DtDefinitions.OUserFields
-
- All Implemented Interfaces:
io.vertigo.datamodel.structure.definitions.DtFieldName<OUser>
,Serializable
,Comparable<DtDefinitions.OUserFields>
- Enclosing class:
- DtDefinitions
public static enum DtDefinitions.OUserFields extends Enum<DtDefinitions.OUserFields> implements io.vertigo.datamodel.structure.definitions.DtFieldName<OUser>
Enumération des champs de OUser.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DtDefinitions.OUserFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static DtDefinitions.OUserFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
usrId
public static final DtDefinitions.OUserFields usrId
Propriété 'Id'.
-
firstName
public static final DtDefinitions.OUserFields firstName
Propriété 'Nom'.
-
lastName
public static final DtDefinitions.OUserFields lastName
Propriété 'Prénom'.
-
email
public static final DtDefinitions.OUserFields email
Propriété 'Email'.
-
password
public static final DtDefinitions.OUserFields password
Propriété 'Mot de passe'.
-
mailAlert
public static final DtDefinitions.OUserFields mailAlert
Propriété 'Alerté en cas d'erreur'.
-
active
public static final DtDefinitions.OUserFields active
Propriété 'Compte Actif'.
-
-
Method Detail
-
values
public static DtDefinitions.OUserFields[] 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.OUserFields c : DtDefinitions.OUserFields.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.OUserFields 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
-
-