Class PropertyPaths
- java.lang.Object
-
- org.eclipse.rdf4j.sparqlbuilder.core.PropertyPaths
-
@Deprecated(since="4.0") public class PropertyPaths extends Object
Deprecated.Use thePropertyPathBuilder
instead.
-
-
Constructor Summary
Constructors Constructor Description PropertyPaths()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static RdfPredicate
oneOrMore(IRI aElement)
Deprecated.static RdfPredicate
oneOrMore(RdfPredicate aElement)
Deprecated.static RdfPredicate
path(IRI... aElements)
Deprecated.static RdfPredicate
path(RdfPredicate... aElements)
Deprecated.Construct property paths for use with theSparqlBuilder
static RdfPredicate
zeroOrMore(IRI aElement)
Deprecated.static RdfPredicate
zeroOrMore(RdfPredicate aElement)
Deprecated.
-
-
-
Method Detail
-
path
public static RdfPredicate path(RdfPredicate... aElements)
Deprecated.Construct property paths for use with theSparqlBuilder
Example:
subject.has(path(zeroOrMore(property)), object)
.- Parameters:
aElements
- the path elements- Returns:
- a property path
-
path
public static RdfPredicate path(IRI... aElements)
Deprecated.
-
zeroOrMore
public static RdfPredicate zeroOrMore(RdfPredicate aElement)
Deprecated.
-
zeroOrMore
public static RdfPredicate zeroOrMore(IRI aElement)
Deprecated.
-
oneOrMore
public static RdfPredicate oneOrMore(RdfPredicate aElement)
Deprecated.
-
oneOrMore
public static RdfPredicate oneOrMore(IRI aElement)
Deprecated.
-
-