Uses of Interface
org.apache.jena.ontapi.model.OntList
Packages that use OntList
Package
Description
-
Uses of OntList in org.apache.jena.ontapi.impl
Methods in org.apache.jena.ontapi.impl with parameters of type OntListModifier and TypeMethodDescriptionOntGraphModelImpl.deleteOntList
(OntObject subject, org.apache.jena.rdf.model.Property predicate, OntList<?> object) Deletes the specifiedOntList
including its annotations. -
Uses of OntList in org.apache.jena.ontapi.impl.objects
Classes in org.apache.jena.ontapi.impl.objects that implement OntListModifier and TypeClassDescriptionclass
OntListImpl<E extends org.apache.jena.rdf.model.RDFNode>
Default OntList implementation.Methods in org.apache.jena.ontapi.impl.objects that return OntListModifier and TypeMethodDescriptionOntListImpl.clear()
OntSimpleClassImpl.NamedImpl.createDisjointUnion
(Collection<OntClass> classes) OntClassImpl.createHasKey
(Collection<OntObjectProperty> ope, Collection<OntDataProperty> dpe) static OntList<OntRelationalProperty>
OntClassImpl.createHasKey
(OntGraphModelImpl m, OntClass clazz, Stream<? extends OntRelationalProperty> collection) OntSimpleClassImpl.createHasKey
(Collection<OntObjectProperty> ope, Collection<OntDataProperty> dpe) OntObjectPropertyImpl.createPropertyChain
(Collection<OntObjectProperty> properties) OntListImpl.get
(int index) OntListImpl.removeFirst()
OntListImpl.removeLast()
Methods in org.apache.jena.ontapi.impl.objects that return types with arguments of type OntListModifier and TypeMethodDescriptionOntSimpleClassImpl.NamedImpl.disjointUnions()
OntClassImpl.hasKeys()
OntSimpleClassImpl.hasKeys()
static Stream<OntList<OntRelationalProperty>>
OntClassImpl.listHasKeys
(OntGraphModelImpl m, OntClass clazz) OntObjectPropertyImpl.propertyChains()
OntListImpl.stream
(OntGraphModelImpl model, OntObject subject, org.apache.jena.rdf.model.Property predicate, Class<N> elementType) Lists all rdf-lists by subject and predicate in the form ofOntList
. -
Uses of OntList in org.apache.jena.ontapi.model
Methods in org.apache.jena.ontapi.model that return OntListModifier and TypeMethodDescriptionAdds the given value to the end of the list.OntList.addAll
(Collection<? extends E> c) Appends all the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.Inserts the specified element at the beginning of this list.Adds the given value to the end of the list.OntList.clear()
Removes all elements from this list.OntClass.Named.createDisjointUnion
(Collection<OntClass> classes) Creates aDisjointUnion
asontology []-list
ofClass Expression
s that is attached to this OWL Class using the predicateowl:disjointUnionOf
.OntClass.createHasKey
(Collection<OntObjectProperty> objectProperties, Collection<OntDataProperty> dataProperties) Creates aHasKey
logical construction asontology []-list
ofObject or Data Property Expression
s that is attached to this Class Expression using the predicateowl:hasKey
.OntObjectProperty.createPropertyChain
(Collection<OntObjectProperty> properties) Creates a property chain logical constructions as aontology []-list
ofObject Property Expression
s that is attached to this Object Property Expression at object positions with the predicateowl:propertyChainAxiom
.OntList.get
(int index) Answers the list that is the tail of this list starting from the given position.OntSWRL.Atom.WithBuiltin.getArgList()
Gets the argument's ONT-List.OntSWRL.Imp.getBodyList()
Gets the body ONT-List.OntSWRL.Imp.getHeadList()
Gets the head ONT-List.OntDisjoint.Individuals.getList()
Gets anONT-List
.OntList.remove()
Removes the last element from this list.OntList.removeFirst()
Removes and the first element from this list.OntList.removeLast()
Removes the last element from this list.Methods in org.apache.jena.ontapi.model that return types with arguments of type OntListModifier and TypeMethodDescriptionOntClass.Named.disjointUnions()
Lists allDisjointUnion
ontology list
s that are attached to this OWL Class on predicateowl:disjointUnionOf
.OntClass.Named.findDisjointUnion
(org.apache.jena.rdf.model.RDFNode list) Finds aDisjointUnion
logical construction attached to this class by the specified rdf-node in the form ofOntList
.default Optional<OntList<OntRelationalProperty>>
OntClass.findHasKey
(org.apache.jena.rdf.model.RDFNode list) Finds aHasKey
logical construction attached to this class expression by the specified rdf-node in the form ofOntList
.default Optional<OntList<OntObjectProperty>>
OntObjectProperty.findPropertyChain
(org.apache.jena.rdf.model.RDFNode list) Finds the firstPropertyChain
logical construction attached to this property for the specified []-list as an object.OntClass.hasKeys()
Lists allHasKey
ontology []-list
s that are attached to this class expression on predicateowl:hasKey
.OntObjectProperty.propertyChains()
Returns aStream
over all property chainontology list
s that are attached to this Object Property Expression on the predicateowl:propertyChainAxiom
.