Enum Class EstadoActo

java.lang.Object
java.lang.Enum<EstadoActo>
es.mdef.gaip_libreria.constantes.EstadoActo
All Implemented Interfaces:
Serializable, Comparable<EstadoActo>, Constable

public enum EstadoActo extends Enum<EstadoActo>
Enumeración que representa los diferentes estados por los que puede pasar un acto.
  • Enum Constant Details

    • CREACION

      public static final EstadoActo CREACION
      El acto está en fase de creación.
    • REGISTRO

      public static final EstadoActo REGISTRO
      El acto está en fase de registro, donde se pueden registrar los invitados.
    • SENTANDO_INVITADOS

      public static final EstadoActo SENTANDO_INVITADOS
      El acto está en la fase de asignación de asientos a los invitados.
    • VALIDACION

      public static final EstadoActo VALIDACION
      El acto está siendo validado.
    • CONTROL

      public static final EstadoActo CONTROL
      El acto está en fase de control.
    • FINALIZADO

      public static final EstadoActo FINALIZADO
      El acto ha finalizado.
  • Method Details

    • values

      public static EstadoActo[] 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

      public static EstadoActo valueOf(String name)
      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 name
      NullPointerException - if the argument is null