Package org.eclipse.rdf4j.sail.helpers
Class AbstractSailConnection.WildStatement
java.lang.Object
org.eclipse.rdf4j.sail.helpers.AbstractSailConnection.WildStatement
- All Implemented Interfaces:
Serializable
,Statement
- Enclosing class:
AbstractSailConnection
Statement pattern that uses null values as wild cards.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionWildStatement
(Resource subject, IRI predicate, Value object) Creates a new Statement with the supplied subject, predicate and object.WildStatement
(Resource subject, IRI predicate, Value object, Resource context) Creates a new Statement with the supplied subject, predicate and object for the specified associated context. -
Method Summary
Modifier and TypeMethodDescriptionGets the context of this statement.Gets the object of this statement.Gets the predicate of this statement.Gets the subject of this statement.toString()
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
subject
The statement's subject. -
predicate
The statement's predicate. -
object
The statement's object. -
context
The statement's context, if applicable.
-
-
Constructor Details
-
WildStatement
Creates a new Statement with the supplied subject, predicate and object.- Parameters:
subject
- The statement's subject, may be null.predicate
- The statement's predicate, may be null.object
- The statement's object, may be null.
-
WildStatement
Creates a new Statement with the supplied subject, predicate and object for the specified associated context.- Parameters:
subject
- The statement's subject, may be null.predicate
- The statement's predicate, may be null.object
- The statement's object, may be null.context
- The statement's context, null to indicate no context is associated.
-
-
Method Details
-
getSubject
Description copied from interface:Statement
Gets the subject of this statement.- Specified by:
getSubject
in interfaceStatement
- Returns:
- The statement's subject.
-
getPredicate
Description copied from interface:Statement
Gets the predicate of this statement.- Specified by:
getPredicate
in interfaceStatement
- Returns:
- The statement's predicate.
-
getObject
Description copied from interface:Statement
Gets the object of this statement. -
getContext
Description copied from interface:Statement
Gets the context of this statement.- Specified by:
getContext
in interfaceStatement
- Returns:
- The statement's context, or null in case of the null context or if not applicable.
-
toString
-