public enum Quotation extends Enum<Quotation>
HiveConf.ConfVars#HIVE_QUOTEDID_SUPPORT| Enum Constant and Description |
|---|
BACKTICKS
Use the backtick character to quote identifiers having special characters.
|
NONE
Quotation of identifiers and special characters in identifiers are not allowed.
|
STANDARD
SQL standard way to quote identifiers.
|
| Modifier and Type | Method and Description |
|---|---|
static Quotation |
from(org.apache.hadoop.conf.Configuration configuration) |
String |
stringValue() |
static Quotation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Quotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Quotation NONE
public static final Quotation BACKTICKS
public static final Quotation STANDARD
public static Quotation[] values()
for (Quotation c : Quotation.values()) System.out.println(c);
public static Quotation 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 String stringValue()
public static Quotation from(org.apache.hadoop.conf.Configuration configuration)
Copyright © 2022 The Apache Software Foundation. All rights reserved.