public enum EnumQueryType extends Enum<EnumQueryType>
Enum Constant and Description |
---|
KEYWORD
Keyword query.
|
METADATA
Named graph metadata query.
|
NAMED_GRAPH
Named graph query.
|
URI
URI query.
|
Modifier and Type | Method and Description |
---|---|
static EnumQueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumQueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumQueryType URI
QueryExecution#findURI()
public static final EnumQueryType KEYWORD
QueryExecution#findKeyword()
public static final EnumQueryType METADATA
QueryExecution#getNamedGraphMetadata()
public static final EnumQueryType NAMED_GRAPH
TODO
public static EnumQueryType[] values()
for (EnumQueryType c : EnumQueryType.values()) System.out.println(c);
public static EnumQueryType 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 © 2013. All Rights Reserved.