- All Implemented Interfaces:
- Serializable,- Comparable<TableOptions.TableType>,- Constable
- Enclosing class:
- TableOptions
A description of the type of a 
Table.- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionA table expression, such as a derived table, a joined table, a common table expression, etc.A table valued function that is defined by aRoutine.A materialised view that is defined by aSelectstatement, and whose data is materialised in the schema.An ordinary table that is stored in the schema.A global temporary table that is stored in the schema and visible to everyone.A table type that is unknown to jOOQ.A view that is defined by aSelectstatement.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanWhether the type is a function.final booleanisTable()Whether the type is a table or a temporary table.final booleanisView()Whether the type is a view or a materialized view.static TableOptions.TableTypeReturns the enum constant of this class with the specified name.static TableOptions.TableType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
TABLEAn ordinary table that is stored in the schema.
- 
TEMPORARYA global temporary table that is stored in the schema and visible to everyone.
- 
VIEWA view that is defined by aSelectstatement.
- 
MATERIALIZED_VIEWA materialised view that is defined by aSelectstatement, and whose data is materialised in the schema.
- 
FUNCTIONA table valued function that is defined by aRoutine.
- 
EXPRESSIONA table expression, such as a derived table, a joined table, a common table expression, etc.
- 
UNKNOWNA table type that is unknown to jOOQ.
 
- 
- 
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
 
- 
isViewpublic final boolean isView()Whether the type is a view or a materialized view.
- 
isFunctionpublic final boolean isFunction()Whether the type is a function.
- 
isTablepublic final boolean isTable()Whether the type is a table or a temporary table.
 
-