Package es.mdef.gaip_libreria.constantes
Enum Class EstadoActo
- All Implemented Interfaces:
Serializable
,Comparable<EstadoActo>
,Constable
Enumeración que representa los diferentes estados por los que puede pasar un acto.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEl acto está en fase de control.El acto está en fase de creación.El acto ha finalizado.El acto está en fase de registro, donde se pueden registrar los invitados.El acto está en la fase de asignación de asientos a los invitados.El acto está siendo validado. -
Method Summary
Modifier and TypeMethodDescriptionstatic EstadoActo
Returns the enum constant of this class with the specified name.static EstadoActo[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CREACION
El acto está en fase de creación. -
REGISTRO
El acto está en fase de registro, donde se pueden registrar los invitados. -
SENTANDO_INVITADOS
El acto está en la fase de asignación de asientos a los invitados. -
VALIDACION
El acto está siendo validado. -
CONTROL
El acto está en fase de control. -
FINALIZADO
El acto ha finalizado.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-