public static enum SqlHint.HintOptionFormat extends Enum<SqlHint.HintOptionFormat> implements Symbolizable
| Enum Constant and Description |
|---|
EMPTY
The hint has no options.
|
ID_LIST
The hint options are as simple identifier list.
|
KV_LIST
The hint options are list of key-value pairs.
|
LITERAL_LIST
The hint options are as literal list.
|
| Modifier and Type | Method and Description |
|---|---|
static SqlHint.HintOptionFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlHint.HintOptionFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfsymbolpublic static final SqlHint.HintOptionFormat EMPTY
public static final SqlHint.HintOptionFormat LITERAL_LIST
public static final SqlHint.HintOptionFormat ID_LIST
public static final SqlHint.HintOptionFormat KV_LIST
public static SqlHint.HintOptionFormat[] values()
for (SqlHint.HintOptionFormat c : SqlHint.HintOptionFormat.values()) System.out.println(c);
public static SqlHint.HintOptionFormat 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 nullCopyright © 2012-2022 Apache Software Foundation. All Rights Reserved.