All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.deephaven.chunk.ResettableByteChunkChunk Maven / Gradle / Ivy

The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
// ****** AUTO-GENERATED CLASS - DO NOT EDIT MANUALLY
// ****** Edit ResettableCharChunkChunk and run "./gradlew replicateSourcesAndChunks" to regenerate
//
// @formatter:off
package io.deephaven.chunk;

import io.deephaven.chunk.attributes.Any;

public class ResettableByteChunkChunk extends ByteChunkChunk
        implements ResettableChunkChunk {

    public static  ResettableByteChunkChunk makeResettableChunk() {
        return new ResettableByteChunkChunk<>();
    }

    private ResettableByteChunkChunk(ByteChunk[] data, int offset, int capacity) {
        super(data, offset, capacity);
    }

    private ResettableByteChunkChunk() {
        this(ByteChunk.getEmptyChunkArray(), 0, 0);
    }

    @Override
    public ResettableByteChunkChunk slice(int offset, int capacity) {
        ChunkHelpers.checkSliceArgs(size, offset, capacity);
        return new ResettableByteChunkChunk<>(data, this.offset + offset, capacity);
    }

    @Override
    public final void resetFromChunk(ChunkChunk other, int offset, int capacity) {
        resetFromTypedChunk(other.asByteChunkChunk(), offset, capacity);
    }

    @Override
    public final void resetFromArray(Object array, int offset, int capacity) {
        // noinspection unchecked
        final ByteChunk[] typedArray = (ByteChunk[]) array;
        resetFromTypedArray(typedArray, offset, capacity);
    }

    public final void resetFromTypedChunk(ByteChunkChunk other, int offset, int capacity) {
        ChunkHelpers.checkSliceArgs(other.size, offset, capacity);
        resetFromTypedArray(other.data, other.offset + offset, capacity);
    }

    public final void resetFromTypedArray(ByteChunk[] data, int offset, int capacity) {
        ChunkHelpers.checkArrayArgs(data.length, offset, capacity);
        this.data = data;
        this.offset = offset;
        this.capacity = capacity;
        this.size = capacity;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy