Package | Description |
---|---|
com.hp.hpl.jena.sparql.graph | |
org.apache.jena.atlas.data |
Modifier and Type | Method and Description |
---|---|
static Graph |
GraphFactory.createDataBagGraph(ThresholdPolicy<Triple> thresholdPolicy)
A graph backed by a DistinctDataBag<Triple>.
|
static Model |
GraphFactory.makeDataBagModel(ThresholdPolicy<Triple> thresholdPolicy)
Create a model over a DataBag graph (will spill to disk when it get large)
|
Constructor and Description |
---|
GraphDataBag(ThresholdPolicy<Triple> thresholdPolicy) |
GraphDefaultDataBag(ThresholdPolicy<Triple> thresholdPolicy) |
GraphDistinctDataBag(ThresholdPolicy<Triple> thresholdPolicy) |
Modifier and Type | Class and Description |
---|---|
class |
ThresholdPolicyCount<T>
A threshold policy based on the number of tuples added.
|
class |
ThresholdPolicyMemory<T>
A threshold policy based on the estimated memory size of the tuples added.
|
Modifier and Type | Method and Description |
---|---|
static <E> ThresholdPolicy<E> |
ThresholdPolicyFactory.count(long threshold)
A threshold policy based on the number of tuples added.
|
static <E> ThresholdPolicy<E> |
ThresholdPolicyFactory.never()
A threshold policy that is never exceeded.
|
static <E> ThresholdPolicy<E> |
ThresholdPolicyFactory.policyFromContext(Context context)
A threshold policy based on the
ARQ.spillToDiskThreshold symbol in the given Context. |
Modifier and Type | Method and Description |
---|---|
static <T> DefaultDataBag<T> |
BagFactory.newDefaultBag(ThresholdPolicy<T> policy,
SerializationFactory<T> serializerFactory)
Get a default (unordered, not distinct) data bag.
|
static <T extends Comparable<? super T>> |
BagFactory.newDistinctBag(ThresholdPolicy<T> policy,
SerializationFactory<T> serializerFactory)
Get a distinct data bag.
|
static <T> DistinctDataBag<T> |
BagFactory.newDistinctBag(ThresholdPolicy<T> policy,
SerializationFactory<T> serializerFactory,
Comparator<T> comparator)
Get a distinct data bag.
|
static <T extends Comparable<? super T>> |
BagFactory.newDistinctNet(ThresholdPolicy<T> policy,
SerializationFactory<T> serializerFactory)
Get a distinct data net.
|
static <T> DistinctDataNet<T> |
BagFactory.newDistinctNet(ThresholdPolicy<T> policy,
SerializationFactory<T> serializerFactory,
Comparator<T> comparator)
Get a distinct data net.
|
static <T extends Comparable<? super T>> |
BagFactory.newSortedBag(ThresholdPolicy<T> policy,
SerializationFactory<T> serializerFactory)
Get a sorted data bag.
|
static <T> SortedDataBag<T> |
BagFactory.newSortedBag(ThresholdPolicy<T> policy,
SerializationFactory<T> serializerFactory,
Comparator<T> comparator)
Get a sorted data bag.
|
Constructor and Description |
---|
DefaultDataBag(ThresholdPolicy<E> policy,
SerializationFactory<E> serializerFactory) |
DistinctDataBag(ThresholdPolicy<E> policy,
SerializationFactory<E> serializerFactory,
Comparator<E> comparator) |
DistinctDataNet(ThresholdPolicy<E> policy,
SerializationFactory<E> serializerFactory,
Comparator<E> comparator) |
SortedDataBag(ThresholdPolicy<E> policy,
SerializationFactory<E> serializerFactory,
Comparator<? super E> comparator) |
Licenced under the Apache License, Version 2.0