Java ByteBuffer to Long readLong(ByteBuffer buffer)

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

Description

read Long

License

LGPL

Declaration

public static long readLong(ByteBuffer buffer) 

Method Source Code

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

import java.nio.ByteBuffer;

public class Main {

    public static long readLong(ByteBuffer buffer) {
        return buffer.getLong();
    }/*from w  w  w  .j  a  v  a  2  s .  c om*/
}

Related

  1. getUInt32(ByteBuffer b)
  2. getUInt8(ByteBuffer b, int n)
  3. getUInteger(ByteBuffer bb)
  4. readLong(ByteBuffer buf, int length)
  5. readLong(ByteBuffer buffer)
  6. readLong(ByteBuffer in)
  7. readLong(ByteBuffer in, final int fitInBytes)
  8. readLong(ByteBuffer logBuf)
  9. readLong64ls(int size, ByteBuffer byteBuf)