Uses of Interface
org.openjena.atlas.data.ThresholdPolicy

Packages that use ThresholdPolicy
com.hp.hpl.jena.sparql.graph   
org.openjena.atlas.data   
 

Uses of ThresholdPolicy in com.hp.hpl.jena.sparql.graph
 

Methods in com.hp.hpl.jena.sparql.graph with parameters of type ThresholdPolicy
static com.hp.hpl.jena.graph.Graph GraphFactory.createDataBagGraph(ThresholdPolicy<com.hp.hpl.jena.graph.Triple> thresholdPolicy)
          A graph backed by a DistinctDataBag<Triple>.
static com.hp.hpl.jena.rdf.model.Model GraphFactory.makeDataBagModel(ThresholdPolicy<com.hp.hpl.jena.graph.Triple> thresholdPolicy)
          Create a model over a DataBag graph (will spill to disk when it get large)
 

Constructors in com.hp.hpl.jena.sparql.graph with parameters of type ThresholdPolicy
GraphDataBag(ThresholdPolicy<com.hp.hpl.jena.graph.Triple> thresholdPolicy)
           
GraphDataBag(ThresholdPolicy<com.hp.hpl.jena.graph.Triple> thresholdPolicy, com.hp.hpl.jena.shared.ReificationStyle style)
           
GraphDefaultDataBag(ThresholdPolicy<com.hp.hpl.jena.graph.Triple> thresholdPolicy)
           
GraphDefaultDataBag(ThresholdPolicy<com.hp.hpl.jena.graph.Triple> thresholdPolicy, com.hp.hpl.jena.shared.ReificationStyle style)
           
GraphDistinctDataBag(ThresholdPolicy<com.hp.hpl.jena.graph.Triple> thresholdPolicy)
           
GraphDistinctDataBag(ThresholdPolicy<com.hp.hpl.jena.graph.Triple> thresholdPolicy, com.hp.hpl.jena.shared.ReificationStyle style)
           
 

Uses of ThresholdPolicy in org.openjena.atlas.data
 

Classes in org.openjena.atlas.data that implement ThresholdPolicy
 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.
 

Methods in org.openjena.atlas.data that return ThresholdPolicy
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.
 

Methods in org.openjena.atlas.data with parameters of type ThresholdPolicy
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>>
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.openjena.atlas.data with parameters of type ThresholdPolicy
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