Package org.apache.calcite.sql.ddl
Enum SqlCreateTableLike.LikeOption
java.lang.Object
java.lang.Enum<SqlCreateTableLike.LikeOption>
org.apache.calcite.sql.ddl.SqlCreateTableLike.LikeOption
- All Implemented Interfaces:
Serializable
,Comparable<SqlCreateTableLike.LikeOption>
,Constable
,Symbolizable
- Enclosing class:
SqlCreateTableLike
public static enum SqlCreateTableLike.LikeOption
extends Enum<SqlCreateTableLike.LikeOption>
implements Symbolizable
The LikeOption specify which additional properties of the original table to copy.
-
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 TypeMethodDescriptionReturns the enum constant of this type with the specified name.static SqlCreateTableLike.LikeOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface org.apache.calcite.sql.Symbolizable
symbol
-
Enum Constant Details
-
ALL
-
DEFAULTS
-
GENERATED
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-