Class IntegerPartitionChunk<T extends Overshadowable>
- java.lang.Object
-
- org.apache.druid.timeline.partition.IntegerPartitionChunk<T>
-
- All Implemented Interfaces:
Comparable<PartitionChunk<T>>,PartitionChunk<T>
public class IntegerPartitionChunk<T extends Overshadowable> extends Object implements PartitionChunk<T>
-
-
Constructor Summary
Constructors Constructor Description IntegerPartitionChunk(Integer start, Integer end, int chunkNumber, T object)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanabuts(PartitionChunk<T> chunk)Determines if this PartitionChunk abuts another PartitionChunk.intcompareTo(PartitionChunk<T> chunk)booleanequals(Object o)intgetChunkNumber()Returns the partition chunk number of this PartitionChunk.TgetObject()Returns the payload, generally an object that can be used to perform some action against the shard.inthashCode()booleanisEnd()Returns true if this chunk is the end of the partition.booleanisStart()Returns true if this chunk is the beginning of the partition.static <T extends Overshadowable>
IntegerPartitionChunk<T>make(Integer start, Integer end, int chunkNumber, T obj)StringtoString()
-
-
-
Method Detail
-
make
public static <T extends Overshadowable> IntegerPartitionChunk<T> make(Integer start, Integer end, int chunkNumber, T obj)
-
getObject
public T getObject()
Description copied from interface:PartitionChunkReturns the payload, generally an object that can be used to perform some action against the shard.- Specified by:
getObjectin interfacePartitionChunk<T extends Overshadowable>- Returns:
- the payload
-
abuts
public boolean abuts(PartitionChunk<T> chunk)
Description copied from interface:PartitionChunkDetermines if this PartitionChunk abuts another PartitionChunk. A sequence of abutting PartitionChunks should start with an object where isStart() == true and eventually end with an object where isEnd() == true.- Specified by:
abutsin interfacePartitionChunk<T extends Overshadowable>- Parameters:
chunk- input chunk- Returns:
- true if this chunk abuts the input chunk
-
isStart
public boolean isStart()
Description copied from interface:PartitionChunkReturns true if this chunk is the beginning of the partition. Most commonly, that means it represents the range [-infinity, X) for some concrete X.- Specified by:
isStartin interfacePartitionChunk<T extends Overshadowable>- Returns:
- true if the chunk is the beginning of the partition
-
isEnd
public boolean isEnd()
Description copied from interface:PartitionChunkReturns true if this chunk is the end of the partition. Most commonly, that means it represents the range [X, infinity] for some concrete X.- Specified by:
isEndin interfacePartitionChunk<T extends Overshadowable>- Returns:
- true if the chunk is the end of the partition
-
getChunkNumber
public int getChunkNumber()
Description copied from interface:PartitionChunkReturns the partition chunk number of this PartitionChunk. I.e. if there are 4 partitions in total and this is the 3rd partition, it will return 2- Specified by:
getChunkNumberin interfacePartitionChunk<T extends Overshadowable>- Returns:
- the sequential numerical id of this partition chunk
-
compareTo
public int compareTo(PartitionChunk<T> chunk)
- Specified by:
compareToin interfaceComparable<T extends Overshadowable>
-
-