Uses of Interface
org.apache.jena.atlas.data.ThresholdPolicy
Packages that use ThresholdPolicy
-
Uses of ThresholdPolicy in org.apache.jena.atlas.data
Classes in org.apache.jena.atlas.data that implement ThresholdPolicyModifier and TypeClassDescriptionclass
A threshold policy based on the number of tuples added.Methods in org.apache.jena.atlas.data that return ThresholdPolicyModifier and TypeMethodDescriptionstatic <E> ThresholdPolicy<E>
ThresholdPolicyFactory.count
(long threshold) A threshold policy based on the number of tuples added.static final <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 theARQ.spillToDiskThreshold
symbol in the given Context.Methods in org.apache.jena.atlas.data with parameters of type ThresholdPolicyModifier and TypeMethodDescriptionstatic <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>>
DistinctDataBag<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>>
DistinctDataNet<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>>
SortedDataBag<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.Constructors in org.apache.jena.atlas.data with parameters of type ThresholdPolicyModifierConstructorDescriptionDefaultDataBag
(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)