Enum PreprocessedQuerySerializer.NonIriFunctions
- java.lang.Object
-
- java.lang.Enum<PreprocessedQuerySerializer.NonIriFunctions>
-
- org.eclipse.rdf4j.queryrender.sparql.experimental.PreprocessedQuerySerializer.NonIriFunctions
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PreprocessedQuerySerializer.NonIriFunctions>
- Enclosing class:
- PreprocessedQuerySerializer
protected static enum PreprocessedQuerySerializer.NonIriFunctions extends java.lang.Enum<PreprocessedQuerySerializer.NonIriFunctions>
Enumeration of standard SPARQL 1.1 functions that are neither recognized by RDF4J as special value expressions nor defined as IRI functions in the fn: namespace (seeFNFunction
).
-
-
Constructor Summary
Constructors Modifier Constructor Description private
NonIriFunctions()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
contains(java.lang.String token)
static PreprocessedQuerySerializer.NonIriFunctions
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PreprocessedQuerySerializer.NonIriFunctions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRLANG
public static final PreprocessedQuerySerializer.NonIriFunctions STRLANG
-
STRDT
public static final PreprocessedQuerySerializer.NonIriFunctions STRDT
-
UUID
public static final PreprocessedQuerySerializer.NonIriFunctions UUID
-
STRUUID
public static final PreprocessedQuerySerializer.NonIriFunctions STRUUID
-
RAND
public static final PreprocessedQuerySerializer.NonIriFunctions RAND
-
NOW
public static final PreprocessedQuerySerializer.NonIriFunctions NOW
-
TZ
public static final PreprocessedQuerySerializer.NonIriFunctions TZ
-
MD5
public static final PreprocessedQuerySerializer.NonIriFunctions MD5
-
SHA1
public static final PreprocessedQuerySerializer.NonIriFunctions SHA1
-
SHA256
public static final PreprocessedQuerySerializer.NonIriFunctions SHA256
-
SHA384
public static final PreprocessedQuerySerializer.NonIriFunctions SHA384
-
SHA512
public static final PreprocessedQuerySerializer.NonIriFunctions SHA512
-
-
Method Detail
-
values
public static PreprocessedQuerySerializer.NonIriFunctions[] 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 (PreprocessedQuerySerializer.NonIriFunctions c : PreprocessedQuerySerializer.NonIriFunctions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PreprocessedQuerySerializer.NonIriFunctions 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
-
contains
public static boolean contains(java.lang.String token)
-
-