Here you can find the source of readLongLE(ByteBuffer buf, int i)
public static long readLongLE(ByteBuffer buf, int i)
//package com.java2s; /* Partial import of https://github.com/jpountz/lz4-java, Apache 2.0 licensed. */ import java.nio.ByteBuffer; import java.nio.ByteOrder; public class Main { public static long readLongLE(ByteBuffer buf, int i) { assert buf.order() == ByteOrder.LITTLE_ENDIAN; return buf.getLong(i); }//from w w w . j a v a 2 s .c om }