public static enum QueryUtil.QuoteChar extends Enum<QueryUtil.QuoteChar>
Modifier and Type | Method and Description |
---|---|
char |
getCharacter() |
static QueryUtil.QuoteChar |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryUtil.QuoteChar[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryUtil.QuoteChar SINGLE
public static final QueryUtil.QuoteChar DOUBLE
public static QueryUtil.QuoteChar[] values()
for (QueryUtil.QuoteChar c : QueryUtil.QuoteChar.values()) System.out.println(c);
public static QueryUtil.QuoteChar 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 char getCharacter()