Package a.b

Enum Class SomeEnum

All Implemented Interfaces:
Serializable, Comparable<SomeEnum>, Constable

public enum SomeEnum extends Enum<SomeEnum>
Example predefined Enum
  • Enum Constant Details

    • A

      public static final SomeEnum A
      Represents the database value x.
    • B

      public static final SomeEnum B
      Represents the database value y.
    • C

      public static final SomeEnum C
      Represents the database value z.
  • Method Details

    • values

      public static SomeEnum[] 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 SomeEnum 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
    • getValue

      public String getValue()
    • getByValue

      public static SomeEnum getByValue(String arg)