public enum QuoteCharacter extends Enum<QuoteCharacter>
| Enum Constant and Description |
|---|
BACK_QUOTE |
BRACKETS |
NONE |
QUOTE |
SINGLE_QUOTE |
| Modifier and Type | Method and Description |
|---|---|
static QuoteCharacter |
getQuoteCharacter(String value)
Get quote character.
|
static QuoteCharacter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuoteCharacter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuoteCharacter BACK_QUOTE
public static final QuoteCharacter SINGLE_QUOTE
public static final QuoteCharacter QUOTE
public static final QuoteCharacter BRACKETS
public static final QuoteCharacter NONE
public static QuoteCharacter[] values()
for (QuoteCharacter c : QuoteCharacter.values()) System.out.println(c);
public static QuoteCharacter 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 static QuoteCharacter getQuoteCharacter(String value)
value - value to be get quote characterCopyright © 2020 The Apache Software Foundation. All rights reserved.