- All Implemented Interfaces:
- Serializable,- Comparable<HistoryStatus>,- Constable,- EnumType
This class is generated by jOOQ.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionThe catalog of the enum type, if applicable.The literal as defined in the databasegetName()The type name as registered in the database, if applicable (Postgres schema-scope enum type only).The schema of the enum type, if applicable (Postgres schema-scope enum type only).static HistoryStatuslookupLiteral(String literal) Lookup a value of this EnumType by its literal.static HistoryStatusReturns the enum constant of this class with the specified name.static HistoryStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
STARTING
- 
REVERTING
- 
MIGRATING
- 
SUCCESS
- 
FAILURE
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
- 
getCatalogDescription copied from interface:EnumTypeThe catalog of the enum type, if applicable. Otherwise, this returnsnull- Specified by:
- getCatalogin interface- EnumType
 
- 
getSchemaDescription copied from interface:EnumTypeThe schema of the enum type, if applicable (Postgres schema-scope enum type only). Otherwise, this returnsnull
- 
getNameDescription copied from interface:EnumTypeThe type name as registered in the database, if applicable (Postgres schema-scope enum type only). Otherwise, this returnsnull
- 
getLiteralDescription copied from interface:EnumTypeThe literal as defined in the database- Specified by:
- getLiteralin interface- EnumType
 
- 
lookupLiteralLookup a value of this EnumType by its literal. Returnsnull, if no such value could be found, seeEnumType.lookupLiteral(Class, String).
 
-