|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Statement | |
com.hp.hpl.jena.ontology | Provides a set of abstractions and convenience classes for accessing and manipluating ontologies represented in RDF. |
com.hp.hpl.jena.rdf.model | A package for creating and manipulating RDF graphs. |
com.hp.hpl.jena.rdql | RDQL - A query language for Jena. |
com.hp.hpl.jena.util | Miscellaneous collection of utility classes. |
Uses of Statement in com.hp.hpl.jena.ontology |
Subinterfaces of Statement in com.hp.hpl.jena.ontology | |
interface |
Axiom
Interface defining the a general super-type for axioms specified by the ontology. |
interface |
ClassAxiom
An axiom about classes, such as class equivalence or the sub-class relationship. |
interface |
DifferentFromFact
Encapsulates the fact that two individuals are stated to be distinct. |
interface |
DisjointClassesAxiom
A type of axiom denoting disjoint-ness between two class descriptions. |
interface |
DistinctMembersFact
Encapsulates the fact stating that a list of individuals are pair-wise distinct (the unique names assumption, applied to a restricted domain). |
interface |
EquivalentClassAxiom
A type of axiom denoting equivalence between two class descriptions. |
interface |
EquivalentPropertyAxiom
Axiom stating that one property description is equivalent to another. |
interface |
Fact
Encapsulates statements in the ontology model that represent facts about individuals. |
interface |
PropertyAxiom
Encapsulates axioms about properties, such as sub-property and equivalent property. |
interface |
SameAsFact
Represents the fact that one idividual is stated to be the same as another. |
interface |
SubClassAxiom
A type of axiom denoting equivalence between two class descriptions. |
interface |
SubPropertyAxiom
Axiom that states that one property description is a sub-property of another. |
Uses of Statement in com.hp.hpl.jena.rdf.model |
Methods in com.hp.hpl.jena.rdf.model that return Statement | |
Statement |
StmtIterator.nextStatement()
Return the next Statement of the iteration. |
Statement |
Statement.getProperty(Property p)
Get a property of the object of the statement. |
Statement |
Statement.getStatementProperty(Property p)
Return a property of this statement. |
Statement |
Statement.changeObject(boolean o)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(long o)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(char o)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(float o)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(double o)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(java.lang.String o)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(java.lang.String o,
boolean wellFormed)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(java.lang.String o,
java.lang.String l)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(java.lang.String o,
java.lang.String l,
boolean wellFormed)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(RDFNode o)
change the object of the statement (S, P, X) to (S, P, o). |
Statement |
Statement.changeObject(java.lang.Object o)
change the object of the statement (S, P, X) to o. |
Statement |
Statement.remove()
Remove this statement from its associated model. |
static Statement |
ResourceFactory.createStatement(Resource subject,
Property predicate,
RDFNode object)
create a new statement. |
Statement |
ResourceFactory.Interface.createStatement(Resource subject,
Property predicate,
RDFNode object)
create a new statement. |
Statement |
Resource.getProperty(Property p)
Get a property value of this resource. |
Statement |
ReifiedStatement.getStatement()
answer the Statement that this ReifiedStatement reifies. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
boolean o)
Create a Statement instance. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
long o)
Create a Statement instance. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
char o)
Create a Statement instance. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
float o)
Create a Statement instance. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
double o)
Create a Statement instance. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
java.lang.String o)
Create a Statement instance. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
java.lang.String o,
java.lang.String l)
Create a Statement instance. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
java.lang.String o,
boolean wellFormed)
Create a Statement instance. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
java.lang.String o,
java.lang.String l,
boolean wellFormed)
Create a Statement instance. |
Statement |
ModelCon.createStatement(Resource s,
Property p,
java.lang.Object o)
Create a Statement instance. |
Statement |
Model.createStatement(Resource s,
Property p,
RDFNode o)
Create a Statement instance. |
Statement |
Model.getProperty(Resource s,
Property p)
Return a statement with given subject and property. |
Methods in com.hp.hpl.jena.rdf.model with parameters of type Statement | |
boolean |
SimpleSelector.test(Statement s)
Test whether a statement should be included in a selection. |
boolean |
SimpleSelector.selects(Statement s)
This method is designed to be over ridden by subclasses to define application specific constraints on the statements selected. |
boolean |
Selector.test(Statement s)
Determine whether a Statement should be selected. |
void |
ModelChangedListener.addedStatement(Statement s)
Method to call when a single statement has been added to the attached model. |
void |
ModelChangedListener.addedStatements(Statement[] statements)
Method to call when an array of statements has been added to the attached model. |
void |
ModelChangedListener.removedStatement(Statement s)
Method to call when a single statement has been removed from the attached model. |
void |
ModelChangedListener.removedStatements(Statement[] statements)
Method to call when an array of statements has been removed from the attached model. |
Model |
Model.add(Statement s)
Add a statement to this model. |
Model |
Model.add(Statement[] statements)
Add all the statements to the Model, using through the bulk update interface. |
Model |
Model.remove(Statement[] statements)
Remove all the statements from the Model, using the bulk update interface. |
Model |
Model.remove(Statement s)
Removes a statement. |
boolean |
Model.contains(Statement s)
Determine if a statement is present in this model. |
boolean |
Model.isReified(Statement s)
Determine if this Statement has been reified in this Model. |
Resource |
Model.getAnyReifiedStatement(Statement s)
Find or create a ReifiedStatement corresponding to a Statement. |
void |
Model.removeAllReifications(Statement s)
Remove all reifications (ie implicit reification quads) of _s_. |
ReifiedStatement |
Model.createReifiedStatement(Statement s)
Answer a ReifiedStatement that encodes _s_ and belongs to this Model. |
ReifiedStatement |
Model.createReifiedStatement(java.lang.String uri,
Statement s)
answer a ReifiedStatement that encodes _s_, belongs to this Model, and is a Resource with that _uri_. |
RSIterator |
Model.listReifiedStatements(Statement st)
answer an iterator delivering all the reified statements "in" this model that match the statement _st_. |
java.util.Iterator |
InfModel.getDerivation(Statement statement)
Return the derivation of the given statement (which should be the result of some previous list operation). |
Container |
Container.remove(Statement s)
Remove a value from the container. |
Container |
Bag.remove(Statement s)
Remove a value from the container. |
Container |
Alt.remove(Statement s)
Remove a value from the container. |
Uses of Statement in com.hp.hpl.jena.rdql |
Methods in com.hp.hpl.jena.rdql with parameters of type Statement | |
void |
ResultBinding.addTriple(Statement s)
Add a triple to the ResultBinding. |
Uses of Statement in com.hp.hpl.jena.util |
Methods in com.hp.hpl.jena.util with parameters of type Statement | |
static java.lang.String |
PrintUtil.print(Statement stmt)
Return a simplified print string for a statment |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |