Module org.jooq
Package org.jooq.impl

Enum Class HistoryStatus

java.lang.Object
java.lang.Enum<HistoryStatus>
org.jooq.impl.HistoryStatus
All Implemented Interfaces:
Serializable, Comparable<HistoryStatus>, Constable, EnumType

public enum HistoryStatus extends Enum<HistoryStatus> implements EnumType
This class is generated by jOOQ.
  • Enum Constant Details

  • Method Details

    • values

      public static HistoryStatus[] 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 HistoryStatus 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
    • getCatalog

      public Catalog getCatalog()
      Description copied from interface: EnumType
      The catalog of the enum type, if applicable. Otherwise, this returns null
      Specified by:
      getCatalog in interface EnumType
    • getSchema

      public Schema getSchema()
      Description copied from interface: EnumType
      The schema of the enum type, if applicable (Postgres schema-scope enum type only). Otherwise, this returns null
      Specified by:
      getSchema in interface EnumType
    • getName

      public String getName()
      Description copied from interface: EnumType
      The type name as registered in the database, if applicable (Postgres schema-scope enum type only). Otherwise, this returns null
      Specified by:
      getName in interface EnumType
    • getLiteral

      public String getLiteral()
      Description copied from interface: EnumType
      The literal as defined in the database
      Specified by:
      getLiteral in interface EnumType
    • lookupLiteral

      public static HistoryStatus lookupLiteral(String literal)
      Lookup a value of this EnumType by its literal. Returns null, if no such value could be found, see EnumType.lookupLiteral(Class, String).