Class NioBufferFunctions


  • public class NioBufferFunctions
    extends java.lang.Object
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void get​(java.nio.ByteBuffer src, int index, byte[] dst)  
      static void get​(java.nio.ByteBuffer src, int index, byte[] dst, int dstOffset, int length)  
      static void put​(java.nio.ByteBuffer dst, int dstIndex, byte[] src, int srcOffset, int length)  
      static void put​(java.nio.ByteBuffer dst, int dstIndex, java.nio.ByteBuffer src, int srcOffset, int length)  
      static void put​(java.nio.ByteBuffer newBuffer, java.nio.ByteBuffer flip)  
      static void put​(IntBuffer intBuffer, int index, int[] data)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NioBufferFunctions

        public NioBufferFunctions()
    • Method Detail

      • get

        public static final void get​(java.nio.ByteBuffer src,
                                     int index,
                                     byte[] dst,
                                     int dstOffset,
                                     int length)
      • put

        public static final void put​(java.nio.ByteBuffer dst,
                                     int dstIndex,
                                     java.nio.ByteBuffer src,
                                     int srcOffset,
                                     int length)
      • put

        public static final void put​(java.nio.ByteBuffer dst,
                                     int dstIndex,
                                     byte[] src,
                                     int srcOffset,
                                     int length)
      • get

        public static final void get​(java.nio.ByteBuffer src,
                                     int index,
                                     byte[] dst)
      • put

        public static void put​(java.nio.ByteBuffer newBuffer,
                               java.nio.ByteBuffer flip)
      • put

        public static void put​(IntBuffer intBuffer,
                               int index,
                               int[] data)