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 TripleBoundaryExpresses this StatementBoundary as a TripleBoundary.booleanMethod to over-ride to define what continues the boundary search; default definition is !stopAt(s).static TripleBoundaryconvert(Model s, StatementBoundary b) Answer a TripleBoundary that is implemented in terms of a StatementBoundary.booleanMethod 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:
stopAtin 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:
asTripleBoundaryin interfaceStatementBoundary
-
convert
Answer a TripleBoundary that is implemented in terms of a StatementBoundary.
-