public static enum DslTermQuery.EscapeMode extends Enum<DslTermQuery.EscapeMode>
| Enum Constant and Description |
|---|
escape
escape reserved syntax.
|
none
no change.
|
remove
remove reserved syntax.
|
| Modifier and Type | Method and Description |
|---|---|
static DslTermQuery.EscapeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DslTermQuery.EscapeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DslTermQuery.EscapeMode none
public static final DslTermQuery.EscapeMode escape
public static final DslTermQuery.EscapeMode remove
public static DslTermQuery.EscapeMode[] values()
for (DslTermQuery.EscapeMode c : DslTermQuery.EscapeMode.values()) System.out.println(c);
public static DslTermQuery.EscapeMode 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 © 2016. All Rights Reserved.