public static enum BlazeGraph.Match extends Enum<BlazeGraph.Match>
Enum Constant and Description |
---|
ALL
Match all terms in the search string (AND).
|
ANY
Match any terms in the search string (OR).
|
EXACT
Match the search string exactly using a regex filter.
|
Modifier and Type | Method and Description |
---|---|
static BlazeGraph.Match |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlazeGraph.Match[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlazeGraph.Match ANY
public static final BlazeGraph.Match ALL
public static final BlazeGraph.Match EXACT
public static BlazeGraph.Match[] values()
for (BlazeGraph.Match c : BlazeGraph.Match.values()) System.out.println(c);
public static BlazeGraph.Match 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 © 2015–2016 SYSTAP, LLC DBA Blazegraph. All rights reserved.