Class ObjectSet<T>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<T>
-
- com.inrupt.rdf.wrapping.jena.ObjectSet<T>
-
- Type Parameters:
T
- the type of elements handled by this set
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,Set<T>
public class ObjectSet<T> extends AbstractSet<T>
This class implements theSet
interface as a dynamic, mutable view over an RDF predicate-object list (statements that share a subject and a predicate). It is intended for use in classes that wrapRDF nodes
for strongly typed convenience mapping.This set does not permit
null
elements.The order of elements returned by this implementation is not guaranteed as it depends on the ordering of query results in the underlying
Model
. This reflects the unordered nature of RDF graphs.The synchronization characteristics and time complexity of this implementation are those of the underlying
Model
implementation. It could well be that read and write operations on instances of this class result in expensive IO operations. Even simple iteration is most likely to be much less performant than what callers expect from other Java collections.The iterators returned by this implementation do not support the
Iterator.remove()
operation.This implementation uses the
AbstractSet.equals(Object)
andAbstractSet.hashCode()
operations. Equality and hashing are dynamic: They depend on the state of the underlyingModel
at the time of calling and are not fixed when creating the instance.Example: Given a node wrapper
N
, instances of this class can be used to make read/write strongly typed set properties.public class N extends WrapperResource { public Set<String> getType { return new ObjectSet<>( this, RDF.type, NodeMappings::asIriResource, ValueMappings::iriAsString ); } }
- Author:
- Samu Lang
-
-
Field Summary
Fields Modifier and Type Field Description protected NodeMapping<T>
nodeMapping
protected org.apache.jena.rdf.model.Property
predicate
protected org.apache.jena.rdf.model.Resource
subject
protected ValueMapping<T>
valueMapping
-
Constructor Summary
Constructors Constructor Description ObjectSet(org.apache.jena.rdf.model.Resource subject, org.apache.jena.rdf.model.Property predicate, NodeMapping<T> nodeMapping, ValueMapping<T> valueMapping)
Constructs a new dynamic set view over the objects of statements that share a predicate and an object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(T e)
boolean
addAll(Collection<? extends T> c)
void
clear()
boolean
contains(Object o)
boolean
containsAll(Collection<?> c)
boolean
equals(Object o)
int
hashCode()
boolean
isEmpty()
Iterator<T>
iterator()
boolean
remove(Object o)
boolean
removeAll(Collection<?> c)
boolean
retainAll(Collection<?> c)
int
size()
Object[]
toArray()
<U> U[]
toArray(U[] a)
-
Methods inherited from class java.util.AbstractCollection
toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.Set
spliterator
-
-
-
-
Field Detail
-
subject
protected final org.apache.jena.rdf.model.Resource subject
-
predicate
protected final org.apache.jena.rdf.model.Property predicate
-
nodeMapping
protected final NodeMapping<T> nodeMapping
-
valueMapping
protected final ValueMapping<T> valueMapping
-
-
Constructor Detail
-
ObjectSet
public ObjectSet(org.apache.jena.rdf.model.Resource subject, org.apache.jena.rdf.model.Property predicate, NodeMapping<T> nodeMapping, ValueMapping<T> valueMapping)
Constructs a new dynamic set view over the objects of statements that share a predicate and an object.- Parameters:
subject
- the subject node shared by all statementspredicate
- the predicate node shared by all statementsnodeMapping
- a mapping from nodes to values used for read operations (useNodeMappings
for common mappings)valueMapping
- a mapping from values to nodes used for write operations (useValueMappings
for common mappings)- Throws:
NullPointerException
- if any of the arguments are nullorg.apache.jena.rdf.model.HasNoModelException
- ifsubject
does not have an associatedModel
-
-
Method Detail
-
size
public int size()
- Specified by:
size
in interfaceCollection<T>
- Specified by:
size
in interfaceSet<T>
- Specified by:
size
in classAbstractCollection<T>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceCollection<T>
- Specified by:
isEmpty
in interfaceSet<T>
- Overrides:
isEmpty
in classAbstractCollection<T>
-
contains
public boolean contains(Object o)
- Specified by:
contains
in interfaceCollection<T>
- Specified by:
contains
in interfaceSet<T>
- Overrides:
contains
in classAbstractCollection<T>
-
toArray
public Object[] toArray()
- Specified by:
toArray
in interfaceCollection<T>
- Specified by:
toArray
in interfaceSet<T>
- Overrides:
toArray
in classAbstractCollection<T>
-
toArray
public <U> U[] toArray(U[] a)
- Specified by:
toArray
in interfaceCollection<T>
- Specified by:
toArray
in interfaceSet<T>
- Overrides:
toArray
in classAbstractCollection<T>
-
add
public boolean add(T e)
- Specified by:
add
in interfaceCollection<T>
- Specified by:
add
in interfaceSet<T>
- Overrides:
add
in classAbstractCollection<T>
-
remove
public boolean remove(Object o)
- Specified by:
remove
in interfaceCollection<T>
- Specified by:
remove
in interfaceSet<T>
- Overrides:
remove
in classAbstractCollection<T>
-
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAll
in interfaceCollection<T>
- Specified by:
containsAll
in interfaceSet<T>
- Overrides:
containsAll
in classAbstractCollection<T>
-
addAll
public boolean addAll(Collection<? extends T> c)
- Specified by:
addAll
in interfaceCollection<T>
- Specified by:
addAll
in interfaceSet<T>
- Overrides:
addAll
in classAbstractCollection<T>
-
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAll
in interfaceCollection<T>
- Specified by:
retainAll
in interfaceSet<T>
- Overrides:
retainAll
in classAbstractCollection<T>
-
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAll
in interfaceCollection<T>
- Specified by:
removeAll
in interfaceSet<T>
- Overrides:
removeAll
in classAbstractSet<T>
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection<T>
- Specified by:
clear
in interfaceSet<T>
- Overrides:
clear
in classAbstractCollection<T>
-
equals
public boolean equals(Object o)
- Specified by:
equals
in interfaceCollection<T>
- Specified by:
equals
in interfaceSet<T>
- Overrides:
equals
in classAbstractSet<T>
-
hashCode
public int hashCode()
- Specified by:
hashCode
in interfaceCollection<T>
- Specified by:
hashCode
in interfaceSet<T>
- Overrides:
hashCode
in classAbstractSet<T>
-
-