Class WritableBooleanChunk<ATTR extends Attributes.Any>
java.lang.Object
com.illumon.iris.db.v2.sources.chunk.ChunkBase<ATTR>
com.illumon.iris.db.v2.sources.chunk.BooleanChunk<ATTR>
com.illumon.iris.db.v2.sources.chunk.WritableBooleanChunk<ATTR>
- All Implemented Interfaces:
Chunk<ATTR>
,PoolableChunk
,WritableChunk<ATTR>
,SafeCloseable
,AutoCloseable
- Direct Known Subclasses:
ResettableWritableBooleanChunk
public class WritableBooleanChunk<ATTR extends Attributes.Any> extends BooleanChunk<ATTR> implements WritableChunk<ATTR>
WritableChunk
implementation for boolean data.-
Field Summary
Fields inherited from interface com.illumon.iris.db.v2.sources.chunk.Chunk
MAXIMUM_SIZE, SYSTEM_ARRAYCOPY_THRESHOLD, SYSTEM_ARRAYFILL_THRESHOLD
-
Method Summary
Modifier and Type Method Description void
add(boolean value)
void
appendTypedChunk(BooleanChunk<? extends ATTR> src, int srcOffset, int length)
void
close()
void
copyFromArray(Object srcArray, int srcOffset, int destOffset, int length)
void
copyFromChunk(Chunk<? extends ATTR> src, int srcOffset, int destOffset, int length)
void
copyFromTypedArray(boolean[] src, int srcOffset, int destOffset, int length)
void
copyFromTypedChunk(BooleanChunk<? extends ATTR> src, int srcOffset, int destOffset, int length)
static <ATTR extends Attributes.Any, ATTR_DERIV extends ATTR>
WritableBooleanChunk<ATTR_DERIV>downcast(WritableBooleanChunk<ATTR> self)
void
fillWithBoxedValue(int offset, int size, Object value)
Fill a sub-range of this writable chunk with the given value, unboxing it as appropriate.void
fillWithValue(int offset, int length, boolean value)
ChunkFiller
getChunkFiller()
Our ChunkFiller "plugin".static <ATTR extends Attributes.Any>
WritableBooleanChunk<ATTR>makeWritableChunk(int size)
static WritableBooleanChunk
makeWritableChunkForPool(int size)
void
set(int index, boolean value)
WritableBooleanChunk<ATTR>
slice(int offset, int capacity)
Make a new Chunk that represents either exactly the same view on the underlying data as this Chunk, or a subrange of that view.void
sort()
Sort this chunk in-place using Java's primitive defined ordering.static <ATTR extends Attributes.Any, ATTR_DERIV extends ATTR>
WritableBooleanChunk<ATTR>upcast(WritableBooleanChunk<ATTR_DERIV> self)
static <ATTR extends Attributes.Any>
WritableBooleanChunk<ATTR>writableChunkWrap(boolean[] data)
static <ATTR extends Attributes.Any>
WritableBooleanChunk<ATTR>writableChunkWrap(boolean[] data, int offset, int size)
Methods inherited from class com.illumon.iris.db.v2.sources.chunk.BooleanChunk
chunkWrap, chunkWrap, copyToArray, copyToChunk, copyToTypedArray, get, getChunkType, getEmptyChunk, isAlias, isAlias, makeArray
Methods inherited from class com.illumon.iris.db.v2.sources.chunk.ChunkBase
internalCapacity, internalSetSize, size
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.Chunk
asBooleanChunk, asByteChunk, asCharChunk, asDoubleChunk, asFloatChunk, asIntChunk, asLongChunk, asObjectChunk, asShortChunk, copyToArray, copyToBuffer, copyToChunk, getChunkType, isAlias, isAlias, size
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.WritableChunk
asWritableBooleanChunk, asWritableByteChunk, asWritableCharChunk, asWritableDoubleChunk, asWritableFloatChunk, asWritableIntChunk, asWritableLongChunk, asWritableObjectChunk, asWritableShortChunk, capacity, copyFromBuffer, fillWithNullValue, internalCapacity, internalSetSize, setSize, sort
-
Method Details
-
makeWritableChunk
-
makeWritableChunkForPool
-
writableChunkWrap
public static <ATTR extends Attributes.Any> WritableBooleanChunk<ATTR> writableChunkWrap(boolean[] data) -
writableChunkWrap
public static <ATTR extends Attributes.Any> WritableBooleanChunk<ATTR> writableChunkWrap(boolean[] data, int offset, int size) -
set
public final void set(int index, boolean value) -
add
public final void add(boolean value) -
slice
Description copied from interface:Chunk
Make a new Chunk that represents either exactly the same view on the underlying data as this Chunk, or a subrange of that view. The view is defined as [0..size) (in the coordinate space of this Chunk).- Specified by:
slice
in interfaceChunk<ATTR extends Attributes.Any>
- Specified by:
slice
in interfaceWritableChunk<ATTR extends Attributes.Any>
- Overrides:
slice
in classBooleanChunk<ATTR extends Attributes.Any>
- Parameters:
offset
- Offset of the new Chunk, relative to this Chunk. 0 ≤ offset ≤ this.sizecapacity
- Capacity and initial size of the new Chunk. 0 ≤ capacity ≤ this.size -offset
.- Returns:
- The new Chunk. A new Chunk will always be returned, even if the Chunks represent the same view.
-
fillWithBoxedValue
Description copied from interface:WritableChunk
Fill a sub-range of this writable chunk with the given value, unboxing it as appropriate.- Specified by:
fillWithBoxedValue
in interfaceWritableChunk<ATTR extends Attributes.Any>
- Parameters:
offset
- Starting offsetsize
- Number of values to fill
-
fillWithValue
public final void fillWithValue(int offset, int length, boolean value) -
appendTypedChunk
-
copyFromChunk
public final void copyFromChunk(Chunk<? extends ATTR> src, int srcOffset, int destOffset, int length)- Specified by:
copyFromChunk
in interfaceWritableChunk<ATTR extends Attributes.Any>
-
copyFromTypedChunk
public final void copyFromTypedChunk(BooleanChunk<? extends ATTR> src, int srcOffset, int destOffset, int length) -
copyFromArray
- Specified by:
copyFromArray
in interfaceWritableChunk<ATTR extends Attributes.Any>
-
copyFromTypedArray
public final void copyFromTypedArray(boolean[] src, int srcOffset, int destOffset, int length) -
getChunkFiller
Description copied from interface:WritableChunk
Our ChunkFiller "plugin".- Specified by:
getChunkFiller
in interfaceWritableChunk<ATTR extends Attributes.Any>
-
sort
public final void sort()Description copied from interface:WritableChunk
Sort this chunk in-place using Java's primitive defined ordering. Of note is that nulls or NaNs are not sorted according to Deephaven ordering rules.- Specified by:
sort
in interfaceWritableChunk<ATTR extends Attributes.Any>
-
close
public void close()- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceSafeCloseable
-
upcast
public static <ATTR extends Attributes.Any, ATTR_DERIV extends ATTR> WritableBooleanChunk<ATTR> upcast(WritableBooleanChunk<ATTR_DERIV> self) -
downcast
public static <ATTR extends Attributes.Any, ATTR_DERIV extends ATTR> WritableBooleanChunk<ATTR_DERIV> downcast(WritableBooleanChunk<ATTR> self)
-