Uses of Interface
org.openrefine.runners.local.pll.partitioning.Partitioner
-
Packages that use Partitioner Package Description org.openrefine.runners.local.pll org.openrefine.runners.local.pll.partitioning -
-
Uses of Partitioner in org.openrefine.runners.local.pll
Fields in org.openrefine.runners.local.pll with type parameters of type Partitioner Modifier and Type Field Description protected Optional<Partitioner<K>>PairPLL. partitionerMethods in org.openrefine.runners.local.pll that return types with arguments of type Partitioner Modifier and Type Method Description Optional<Partitioner<K>>OrderedJoinPLL. getPartitioner()Optional<Partitioner<K>>PairPLL. getPartitioner()Method parameters in org.openrefine.runners.local.pll with type arguments of type Partitioner Modifier and Type Method Description PairPLL<K,V>PairPLL. withPartitioner(Optional<Partitioner<K>> partitioner)Returns a copy of this PairPLL with a changed partitioner.Constructor parameters in org.openrefine.runners.local.pll with type arguments of type Partitioner Constructor Description PairPLL(PLL<Tuple2<K,V>> pll, Optional<Partitioner<K>> partitioner)PairPLL(PLL<Tuple2<K,V>> pll, Optional<Partitioner<K>> partitioner, io.vavr.collection.Array<Long> partitionSizes) -
Uses of Partitioner in org.openrefine.runners.local.pll.partitioning
Classes in org.openrefine.runners.local.pll.partitioning that implement Partitioner Modifier and Type Class Description classCroppedPartitioner<T>A partitionner for a PLL which was amputed from some partitions.classLongRangePartitionerA range partitioner for long-keyed PLLs, for convenience.classRangePartitioner<T>A partitioner which assumes that the keys are sorted in increasing order.Methods in org.openrefine.runners.local.pll.partitioning that return Partitioner Modifier and Type Method Description static <T> Partitioner<T>CroppedPartitioner. crop(Partitioner<T> partitioner, int partitionsToDrop, boolean atEnd)Constructs the partitioner based on the partitioner for the uncropped PLL.Methods in org.openrefine.runners.local.pll.partitioning with parameters of type Partitioner Modifier and Type Method Description static <T> Partitioner<T>CroppedPartitioner. crop(Partitioner<T> partitioner, int partitionsToDrop, boolean atEnd)Constructs the partitioner based on the partitioner for the uncropped PLL.Constructors in org.openrefine.runners.local.pll.partitioning with parameters of type Partitioner Constructor Description CroppedPartitioner(Partitioner<T> parent, int partitionsToDrop, boolean atEnd)Constructs the partitioner based on the partitioner for the uncropped PLL.
-