Package org.eclipse.rdf4j.query
Enum Query.QueryType
- All Implemented Interfaces:
Serializable
,Comparable<Query.QueryType>
- Enclosing interface:
Query
The different types of queries that RDF4J recognizes: boolean queries, graph queries, and tuple queries.
- Since:
- 3.2.0
-
Enum Constant Summary
Enum ConstantDescriptionBoolean queries (such as the SPARQL ASK query form) return eithertrue
orfalse
as the result.Graph queries (such as the SPARQL CONSTRUCT and DESCRIBE query form) return a sequence of RDFstatements
as the result.Tuple queries (such as the SPARQL SELECT query form) return a sequence ofsets of variable bindings
as the result. -
Method Summary
Modifier and TypeMethodDescriptionstatic Query.QueryType
Returns the enum constant of this type with the specified name.static Query.QueryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
BOOLEAN
Boolean queries (such as the SPARQL ASK query form) return eithertrue
orfalse
as the result. -
GRAPH
Graph queries (such as the SPARQL CONSTRUCT and DESCRIBE query form) return a sequence of RDFstatements
as the result. -
TUPLE
Tuple queries (such as the SPARQL SELECT query form) return a sequence ofsets of variable bindings
as the result.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-