java.lang.Object
org.apache.jena.rdf.model.StatementBoundaryBase
- All Implemented Interfaces:
StatementBoundary
StatementBoundaryBase - a base class for StatementBoundarys, with
built-in conversation to triples and a continueWith as well as a stopAt.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal TripleBoundary
Expresses this StatementBoundary as a TripleBoundary.boolean
Method to over-ride to define what continues the boundary search; default definition is !stopAt(s).static TripleBoundary
convert
(Model s, StatementBoundary b) Answer a TripleBoundary that is implemented in terms of a StatementBoundary.boolean
Method to over-ride to define what stops the boundary search; default definition is !continueWith(s).
-
Constructor Details
-
StatementBoundaryBase
public StatementBoundaryBase()
-
-
Method Details
-
stopAt
Method to over-ride to define what stops the boundary search; default definition is !continueWith(s). exactly one of these two methods must be defined.- Specified by:
stopAt
in interfaceStatementBoundary
-
continueWith
Method to over-ride to define what continues the boundary search; default definition is !stopAt(s). exactly one of these two methods must be defined. -
asTripleBoundary
Expresses this StatementBoundary as a TripleBoundary.- Specified by:
asTripleBoundary
in interfaceStatementBoundary
-
convert
Answer a TripleBoundary that is implemented in terms of a StatementBoundary.
-