Package com.stardog.stark.query.sparql
Enum SPARQL
- java.lang.Object
-
- java.lang.Enum<SPARQL>
-
- com.stardog.stark.query.sparql.SPARQL
-
- All Implemented Interfaces:
QueryLanguage
,java.io.Serializable
,java.lang.Comparable<SPARQL>
public enum SPARQL extends java.lang.Enum<SPARQL> implements QueryLanguage
The SPARQL Query language
- Since:
- 1.0
- Version:
- 1.0
- Author:
- Michael Grove
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Language
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.lang.String
escape(java.lang.String theString)
Properly escape out any special characters in the query string.static java.lang.String
removeSPARQLQueryProlog(java.lang.String theQuery)
Forked from Sesame'sQueryParserUtil#removeSPARQLQueryProlog
to use pre-compiled Patterns.static java.lang.String
toQuery(Query theQuery)
static java.lang.String
toQuery(java.lang.String theQuery, long theOffset, long theLimit, java.util.Map<java.lang.String,Value> theBindings, Dataset theDataset)
static java.lang.String
toQueryString(Value theValue)
java.lang.String
toString()
static SPARQL
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SPARQL[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Language
public static final SPARQL Language
-
-
Method Detail
-
values
public static SPARQL[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SPARQL c : SPARQL.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SPARQL valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
removeSPARQLQueryProlog
public static java.lang.String removeSPARQLQueryProlog(java.lang.String theQuery)
Forked from Sesame'sQueryParserUtil#removeSPARQLQueryProlog
to use pre-compiled Patterns.- Parameters:
theQuery
- the original query string- Returns:
- the query string w/o the prolog
-
toQueryString
@Nonnull public static java.lang.String toQueryString(@Nonnull Value theValue)
-
escape
public static java.lang.String escape(java.lang.String theString)
Properly escape out any special characters in the query string. Replaces unescaped double quotes with \" and replaces slashes '\' which are not a valid escape sequence such as \t or \n with a double slash '\\' so they are unescaped correctly by a SPARQL parser.- Parameters:
theString
- the query string to escape chars in- Returns:
- the escaped query string
-
toQuery
@Nonnull public static java.lang.String toQuery(Query theQuery)
-
toQuery
@Nonnull public static java.lang.String toQuery(@Nonnull java.lang.String theQuery, long theOffset, long theLimit, @Nonnull java.util.Map<java.lang.String,Value> theBindings, @Nonnull Dataset theDataset)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<SPARQL>
-
-