Enum Class TipoDeActo

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

public enum TipoDeActo extends Enum<TipoDeActo>
Enumeración que define los tipos de acto, basados en la presencia o ausencia de una entrega durante el evento.
  • Enum Constant Details

    • CON_ENTREGA

      public static final TipoDeActo CON_ENTREGA
    • SIN_ENTREGA

      public static final TipoDeActo SIN_ENTREGA
  • Method Details

    • values

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