Class ByteBufferUtil

java.lang.Object
gc.garcol.libcore.ByteBufferUtil

public class ByteBufferUtil extends Object
Utility class for working with ByteBuffers.
Since:
2024
  • Method Details

    • put

      public static void put(ByteBuffer buffer, int bufferIndex, byte[] src)
      Puts the given byte array into the specified ByteBuffer at the given index. Updates the buffer's position to the end of the inserted data.
      Parameters:
      buffer - the ByteBuffer to put the byte array into
      bufferIndex - the index in the buffer to start putting the byte array
      src - the byte array to put into the buffer