Java ByteBuffer to Int Array getInt8(ByteBuffer input)

Here you can find the source of getInt8(ByteBuffer input)

Description

get Int

License

Open Source License

Declaration

static int getInt8(ByteBuffer input) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.nio.ByteBuffer;

public class Main {
    static int getInt8(ByteBuffer input) {
        return input.get();
    }//from  w  w w . j av a 2 s  .c o m
}

Related

  1. getInt(ByteBuffer bb)
  2. getInt(ByteBuffer bb, int bi)
  3. getInt(ByteBuffer buffer, ByteOrder order)
  4. getInt(ByteBuffer byteBuffer)
  5. getInt(ByteBuffer intCalculator, byte[] bytes)
  6. getIntArray(ByteBuffer buffer, int size)
  7. getIntArray(ByteBuffer data, int offset, int length)
  8. getIntBE(ByteBuffer b, int start, int end)
  9. getIntBE(final ByteBuffer b, final int start, final int end)