Uses of Interface
org.apache.jena.atlas.data.ThresholdPolicy
-
Packages that use ThresholdPolicy Package Description org.apache.jena.atlas.data -
-
Uses of ThresholdPolicy in org.apache.jena.atlas.data
Classes in org.apache.jena.atlas.data that implement ThresholdPolicy Modifier and Type Class Description classThresholdPolicyCount<T>A threshold policy based on the number of tuples added.Methods in org.apache.jena.atlas.data that return ThresholdPolicy Modifier and Type Method 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 theARQ.spillToDiskThresholdsymbol in the given Context.Methods in org.apache.jena.atlas.data with parameters of type ThresholdPolicy Modifier and Type Method Description static <T> DefaultDataBag<T>BagFactory. newDefaultBag(ThresholdPolicy<T> policy, SerializationFactory<T> serializerFactory)Get a default (unordered, not distinct) data bag.static <T extends java.lang.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, java.util.Comparator<T> comparator)Get a distinct data bag.static <T extends java.lang.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, java.util.Comparator<T> comparator)Get a distinct data net.static <T extends java.lang.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, java.util.Comparator<T> comparator)Get a sorted data bag.Constructors in org.apache.jena.atlas.data with parameters of type ThresholdPolicy Constructor Description DefaultDataBag(ThresholdPolicy<E> policy, SerializationFactory<E> serializerFactory)DistinctDataBag(ThresholdPolicy<E> policy, SerializationFactory<E> serializerFactory, java.util.Comparator<E> comparator)DistinctDataNet(ThresholdPolicy<E> policy, SerializationFactory<E> serializerFactory, java.util.Comparator<E> comparator)SortedDataBag(ThresholdPolicy<E> policy, SerializationFactory<E> serializerFactory, java.util.Comparator<? super E> comparator)
-