Package io.deephaven.chunk
Class ResettableWritableByteChunk<ATTR_BASE extends Any>
java.lang.Object
io.deephaven.chunk.ChunkBase<ATTR>
io.deephaven.chunk.ByteChunk<ATTR>
io.deephaven.chunk.WritableByteChunk<ATTR_BASE>
io.deephaven.chunk.ResettableWritableByteChunk<ATTR_BASE>
- All Implemented Interfaces:
Chunk<ATTR_BASE>,ResettableChunk<ATTR_BASE>,ResettableWritableChunk<ATTR_BASE>,PoolableChunk<ATTR_BASE>,WritableChunk<ATTR_BASE>,SafeCloseable,AutoCloseable
public class ResettableWritableByteChunk<ATTR_BASE extends Any>
extends WritableByteChunk<ATTR_BASE>
implements ResettableWritableChunk<ATTR_BASE>
ResettableWritableChunk implementation for byte data.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.chunk.Chunk
Chunk.Visitor<ATTR extends Any> -
Field Summary
Fields inherited from interface io.deephaven.chunk.Chunk
MAXIMUM_SIZE, SYSTEM_ARRAYCOPY_THRESHOLD, SYSTEM_ARRAYFILL_THRESHOLD -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<ATTR extends ATTR_BASE>
WritableByteChunk<ATTR>clear()Reset this chunk to empty storage.static <ATTR_BASE extends Any>
ResettableWritableByteChunk<ATTR_BASE><ATTR extends ATTR_BASE>
WritableByteChunk<ATTR>resetFromArray(Object array) Reset the data and bounds of this chunk to the entire range of the specified array.<ATTR extends ATTR_BASE>
WritableByteChunk<ATTR>resetFromArray(Object array, int offset, int capacity) Reset the data and bounds of this chunk to a range or sub-range of the specified array.<ATTR extends ATTR_BASE>
WritableByteChunk<ATTR>resetFromChunk(WritableChunk<ATTR> other, int offset, int capacity) Reset the data and bounds of this chunk to a range or sub-range of the specifiedWritableChunk.<ATTR extends ATTR_BASE>
WritableByteChunk<ATTR>resetFromTypedArray(byte[] data, int offset, int capacity) <ATTR extends ATTR_BASE>
WritableByteChunk<ATTR>resetFromTypedChunk(WritableByteChunk<ATTR> other, int offset, int capacity) 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.Methods inherited from class io.deephaven.chunk.WritableByteChunk
add, appendTypedChunk, array, arrayOffset, close, copyFromArray, copyFromBuffer, copyFromChunk, copyFromTypedArray, copyFromTypedBuffer, copyFromTypedChunk, fillWithBoxedValue, fillWithNullValue, fillWithValue, makeWritableChunk, set, sort, sort, upcast, writableChunkWrap, writableChunkWrapMethods inherited from class io.deephaven.chunk.ByteChunk
applyDecoder, applyDecoder, binarySearch, binarySearch, chunkWrap, chunkWrap, copyToArray, copyToBuffer, copyToChunk, copyToTypedArray, copyToTypedBuffer, downcast, get, getChunkType, getEmptyChunk, isAlias, isAlias, isNull, makeArray, walkMethods inherited from class io.deephaven.chunk.ChunkBase
internalCapacity, internalSetSize, sizeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.deephaven.chunk.Chunk
asBooleanChunk, asByteChunk, asCharChunk, asDoubleChunk, asFloatChunk, asIntChunk, asLongChunk, asObjectChunk, asShortChunk, checkChunkType, copyToArray, copyToBuffer, copyToChunk, getChunkType, isAlias, isAlias, size, walkMethods inherited from interface io.deephaven.chunk.ResettableWritableChunk
asResettableWritableBooleanChunk, asResettableWritableByteChunk, asResettableWritableCharChunk, asResettableWritableDoubleChunk, asResettableWritableFloatChunk, asResettableWritableIntChunk, asResettableWritableLongChunk, asResettableWritableObjectChunk, asResettableWritableShortChunkMethods inherited from interface io.deephaven.util.SafeCloseable
closeMethods inherited from interface io.deephaven.chunk.WritableChunk
asWritableBooleanChunk, asWritableByteChunk, asWritableCharChunk, asWritableDoubleChunk, asWritableFloatChunk, asWritableIntChunk, asWritableLongChunk, asWritableObjectChunk, asWritableShortChunk, capacity, copyFromArray, copyFromBuffer, copyFromChunk, fillWithBoxedValue, fillWithNullValue, internalCapacity, internalSetSize, setSize, sort, sort
-
Constructor Details
-
ResettableWritableByteChunk
protected ResettableWritableByteChunk()
-
-
Method Details
-
makeResettableChunk
-
slice
Description copied from interface:ChunkMake 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:
slicein interfaceChunk<ATTR_BASE extends Any>- Specified by:
slicein interfaceWritableChunk<ATTR_BASE extends Any>- Overrides:
slicein classWritableByteChunk<ATTR_BASE extends 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.
-
resetFromChunk
public <ATTR extends ATTR_BASE> WritableByteChunk<ATTR> resetFromChunk(WritableChunk<ATTR> other, int offset, int capacity) Description copied from interface:ResettableChunkReset the data and bounds of this chunk to a range or sub-range of the specifiedWritableChunk.- Specified by:
resetFromChunkin interfaceResettableChunk<ATTR_BASE extends Any>- Specified by:
resetFromChunkin interfaceResettableWritableChunk<ATTR_BASE extends Any>- Parameters:
other- The otherWritableChunkoffset- The offset into othercapacity- The capacity this should have after reset- Returns:
- this
-
resetFromArray
public <ATTR extends ATTR_BASE> WritableByteChunk<ATTR> resetFromArray(Object array, int offset, int capacity) Description copied from interface:ResettableChunkReset the data and bounds of this chunk to a range or sub-range of the specified array.- Specified by:
resetFromArrayin interfaceResettableChunk<ATTR_BASE extends Any>- Specified by:
resetFromArrayin interfaceResettableWritableChunk<ATTR_BASE extends Any>- Parameters:
array- The arrayoffset- The offset into arraycapacity- The capacity this should have after reset- Returns:
- this
-
resetFromArray
Description copied from interface:ResettableChunkReset the data and bounds of this chunk to the entire range of the specified array.- Specified by:
resetFromArrayin interfaceResettableChunk<ATTR_BASE extends Any>- Specified by:
resetFromArrayin interfaceResettableWritableChunk<ATTR_BASE extends Any>- Parameters:
array- The array- Returns:
- this
-
clear
Description copied from interface:ResettableChunkReset this chunk to empty storage.- Specified by:
clearin interfaceResettableChunk<ATTR_BASE extends Any>- Specified by:
clearin interfaceResettableWritableChunk<ATTR_BASE extends Any>
-
resetFromTypedChunk
public <ATTR extends ATTR_BASE> WritableByteChunk<ATTR> resetFromTypedChunk(WritableByteChunk<ATTR> other, int offset, int capacity) -
resetFromTypedArray
public <ATTR extends ATTR_BASE> WritableByteChunk<ATTR> resetFromTypedArray(byte[] data, int offset, int capacity)
-