Java ByteBuffer to Int readIntEquals(ByteBuffer buf, int i, int j)

Here you can find the source of readIntEquals(ByteBuffer buf, int i, int j)

Description

read Int Equals

License

Apache License

Declaration

static boolean readIntEquals(ByteBuffer buf, int i, int j) 

Method Source Code

//package com.java2s;
/*/*from   w  w  w .j av  a 2s. c o  m*/
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.nio.ByteBuffer;

public class Main {
    static boolean readIntEquals(ByteBuffer buf, int i, int j) {
        return buf.getInt(i) == buf.getInt(j);
    }
}

Related

  1. readInt(ByteBuffer buffer)
  2. readInt(ReadableByteChannel channel, ByteBuffer buffer)
  3. readInt16(ByteBuffer bb)
  4. readInt32(ByteBuffer bb)
  5. readInt8(final ByteBuffer buffer)
  6. readIntLE(ByteBuffer buf, int i)
  7. readIntMSB(ByteBuffer logBuf)
  8. readIntoBuffer(SocketChannel channel, ByteBuffer buf, int sleepMsecs)
  9. readInts(final ByteBuffer bb, final int length)