Java ByteBuffer Skip skip(ByteBuffer dest, int length)

Here you can find the source of skip(ByteBuffer dest, int length)

Description

skip

License

Open Source License

Declaration

public static void skip(ByteBuffer dest, int length) 

Method Source Code


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

import java.nio.ByteBuffer;

public class Main {
    public static void skip(ByteBuffer dest, int length) {
        dest.position(dest.position() + length);
    }/*  w ww. j av a  2  s .  c om*/
}

Related

  1. bufferSkip(ByteBuffer buffer, int count)
  2. iskip(ByteBuffer byteBuffer, int intsToSkip)
  3. skip(ByteBuffer buffer, int count)
  4. skip(ByteBuffer buffer, int length)
  5. skipBufs(ByteBuffer[] bufs, int nextWithRemaining)
  6. skipBytes(ByteBuffer buf, int count)
  7. skipChars(ByteBuffer buffer, byte[] chars)
  8. skipToNALUnit(ByteBuffer buf)