public enum CreateSchemaClauseTypeDef extends Enum<CreateSchemaClauseTypeDef> implements Serializable
Enum Constant and Description |
---|
AVRO
Avro-array underlying type.
|
JSON
Json-array underlying type.
|
MAP
Map underlying type.
|
NONE
Undefined (system default) underlying type.
|
OBJECTARRAY
Object-array underlying type.
|
VARIANT
Variant type.
|
XML
XML underlying type.
|
Modifier and Type | Method and Description |
---|---|
static CreateSchemaClauseTypeDef |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreateSchemaClauseTypeDef[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
void |
write(StringWriter writer)
Write keyword according to type def.
|
public static final CreateSchemaClauseTypeDef VARIANT
public static final CreateSchemaClauseTypeDef MAP
public static final CreateSchemaClauseTypeDef OBJECTARRAY
public static final CreateSchemaClauseTypeDef AVRO
public static final CreateSchemaClauseTypeDef JSON
public static final CreateSchemaClauseTypeDef XML
public static final CreateSchemaClauseTypeDef NONE
public static CreateSchemaClauseTypeDef[] values()
for (CreateSchemaClauseTypeDef c : CreateSchemaClauseTypeDef.values()) System.out.println(c);
public static CreateSchemaClauseTypeDef valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic void write(StringWriter writer)
writer
- to write toCopyright © 2005–2021. All rights reserved.