Uses of Class
org.apache.jena.atlas.data.SortedDataBag
-
Packages that use SortedDataBag Package Description org.apache.jena.atlas.data -
-
Uses of SortedDataBag in org.apache.jena.atlas.data
Subclasses of SortedDataBag in org.apache.jena.atlas.data Modifier and Type Class Description classDistinctDataBag<E>This data bag will gather distinct items in memory until a size threshold is passed, at which point it will write out all of the items to disk using the supplied serializer.classDistinctDataNet<E>This class is likeDistinctDataBagexcept that you are informed if the item you just added was known to be distinct.Methods in org.apache.jena.atlas.data that return SortedDataBag Modifier and Type Method Description 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.
-