Java ByteBuffer to Long getUInt(java.nio.ByteBuffer buffer)

Here you can find the source of getUInt(java.nio.ByteBuffer buffer)

Description

get U Int

License

Open Source License

Declaration

public static long getUInt(java.nio.ByteBuffer buffer) 

Method Source Code

//package com.java2s;

public class Main {
    public static long getUInt(java.nio.ByteBuffer buffer) {
        return 0xFFFFFFFFL & (long) buffer.getInt();
    }/*from www. ja  v  a2 s  . c  o  m*/
}

Related

  1. getUInt(ByteBuffer buffer)
  2. getUInt(ByteBuffer buffer)
  3. getUInt16(ByteBuffer b, int n)
  4. getUInt16(ByteBuffer buffer)
  5. getUInt16(ByteBuffer buffer)
  6. getUInt32(ByteBuffer b)