Java ByteBuffer Read readLink(ByteBuffer bb)

Here you can find the source of readLink(ByteBuffer bb)

Description

read Link

License

LGPL

Declaration

public static long readLink(ByteBuffer bb) throws IOException 

Method Source Code

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

import java.io.IOException;

import java.nio.ByteBuffer;

public class Main {
    public static long readLink(ByteBuffer bb) throws IOException {
        return ((long) bb.getInt() & 0xffffffffL);
    }//from  www  .ja v a2  s . co m
}

Related

  1. readHexString(ByteBuffer buffer, int nrBytes)
  2. readIso639(ByteBuffer bb)
  3. readKatakana(ByteBuffer b, char s[], int off, int len)
  4. readLen(ByteBuffer dup, int nls)
  5. readLink(ByteBuffer bb)
  6. readNewLine(ByteBuffer buf)
  7. readNullTerminatedString(ByteBuffer buf)
  8. readObject(ByteBuffer byteBuffer)
  9. readReal(ByteBuffer bb)