Java ByteBuffer Read read(ByteBuffer buffer)

Here you can find the source of read(ByteBuffer buffer)

Description

read

License

LGPL

Declaration

public static byte read(ByteBuffer buffer) 

Method Source Code

//package com.java2s;
//License from project: LGPL 

import java.nio.ByteBuffer;

public class Main {
    public static byte read(ByteBuffer buffer) {
        return buffer.get();
    }/*from ww w .  j av  a 2s.  co  m*/
}

Related

  1. parseEsInfo(ByteBuffer read)
  2. read(@Nonnull final FileChannel src, @Nonnull final ByteBuffer dst, @Nonnegative final long position)
  3. read(ByteBuffer b)
  4. read(ByteBuffer bb, FileChannel ch)
  5. read(ByteBuffer bb, int elementWidth)
  6. read(ByteBuffer dest, ByteBuffer src)
  7. read(ByteBuffer src, int len)
  8. read(final ByteBuffer buffer, final byte marker)
  9. read(SocketChannel p_channel, SSLEngine p_sslEngine, ByteBuffer p_inAppBuf, ByteBuffer p_inNetBuf)