- All Implemented Interfaces:
Serializable
,Comparable<HistoryStatus>
,Constable
,EnumType
This class is generated by jOOQ.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier 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 HistoryStatus
lookupLiteral
(String literal) Lookup a value of this EnumType by its literal.static HistoryStatus
Returns 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
-
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
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 nameNullPointerException
- if the argument is null
-
getCatalog
Description copied from interface:EnumType
The catalog of the enum type, if applicable. Otherwise, this returnsnull
- Specified by:
getCatalog
in interfaceEnumType
-
getSchema
Description copied from interface:EnumType
The schema of the enum type, if applicable (Postgres schema-scope enum type only). Otherwise, this returnsnull
-
getName
Description copied from interface:EnumType
The type name as registered in the database, if applicable (Postgres schema-scope enum type only). Otherwise, this returnsnull
-
getLiteral
Description copied from interface:EnumType
The literal as defined in the database- Specified by:
getLiteral
in interfaceEnumType
-
lookupLiteral
Lookup a value of this EnumType by its literal. Returnsnull
, if no such value could be found, seeEnumType.lookupLiteral(Class, String)
.
-