public enum StringSearchMode extends Enum<StringSearchMode>
Enum Constant and Description |
---|
CONTAINS
The value must contain the template exactly.
|
EXACT
The value has to match the template exactly.
|
PREFIX
The value must have a prefix matching the template.
|
SUFFIX
The value must have a suffix matching the template.
|
Modifier and Type | Method and Description |
---|---|
static StringSearchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringSearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringSearchMode EXACT
public static final StringSearchMode PREFIX
public static final StringSearchMode SUFFIX
public static final StringSearchMode CONTAINS
public static StringSearchMode[] values()
for (StringSearchMode c : StringSearchMode.values()) System.out.println(c);
public static StringSearchMode 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 © 2002–2019 The Neo4j Graph Database Project. All rights reserved.