mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
67 lines
3.8 KiB
Java
Generated
67 lines
3.8 KiB
Java
Generated
// Generated automatically from io.netty.buffer.Unpooled for testing purposes
|
|
|
|
package io.netty.buffer;
|
|
|
|
import io.netty.buffer.ByteBuf;
|
|
import io.netty.buffer.CompositeByteBuf;
|
|
import java.nio.ByteBuffer;
|
|
import java.nio.ByteOrder;
|
|
import java.nio.charset.Charset;
|
|
|
|
public class Unpooled
|
|
{
|
|
protected Unpooled() {}
|
|
public static ByteBuf EMPTY_BUFFER = null;
|
|
public static ByteBuf buffer(){ return null; }
|
|
public static ByteBuf buffer(int p0){ return null; }
|
|
public static ByteBuf buffer(int p0, int p1){ return null; }
|
|
public static ByteBuf copiedBuffer(ByteBuf p0){ return null; }
|
|
public static ByteBuf copiedBuffer(ByteBuf... p0){ return null; }
|
|
public static ByteBuf copiedBuffer(ByteBuffer p0){ return null; }
|
|
public static ByteBuf copiedBuffer(ByteBuffer... p0){ return null; }
|
|
public static ByteBuf copiedBuffer(CharSequence p0, Charset p1){ return null; }
|
|
public static ByteBuf copiedBuffer(CharSequence p0, int p1, int p2, Charset p3){ return null; }
|
|
public static ByteBuf copiedBuffer(byte[] p0){ return null; }
|
|
public static ByteBuf copiedBuffer(byte[] p0, int p1, int p2){ return null; }
|
|
public static ByteBuf copiedBuffer(byte[]... p0){ return null; }
|
|
public static ByteBuf copiedBuffer(char[] p0, Charset p1){ return null; }
|
|
public static ByteBuf copiedBuffer(char[] p0, int p1, int p2, Charset p3){ return null; }
|
|
public static ByteBuf copyBoolean(boolean p0){ return null; }
|
|
public static ByteBuf copyBoolean(boolean... p0){ return null; }
|
|
public static ByteBuf copyDouble(double p0){ return null; }
|
|
public static ByteBuf copyDouble(double... p0){ return null; }
|
|
public static ByteBuf copyFloat(float p0){ return null; }
|
|
public static ByteBuf copyFloat(float... p0){ return null; }
|
|
public static ByteBuf copyInt(int p0){ return null; }
|
|
public static ByteBuf copyInt(int... p0){ return null; }
|
|
public static ByteBuf copyLong(long p0){ return null; }
|
|
public static ByteBuf copyLong(long... p0){ return null; }
|
|
public static ByteBuf copyMedium(int p0){ return null; }
|
|
public static ByteBuf copyMedium(int... p0){ return null; }
|
|
public static ByteBuf copyShort(int p0){ return null; }
|
|
public static ByteBuf copyShort(int... p0){ return null; }
|
|
public static ByteBuf copyShort(short... p0){ return null; }
|
|
public static ByteBuf directBuffer(){ return null; }
|
|
public static ByteBuf directBuffer(int p0){ return null; }
|
|
public static ByteBuf directBuffer(int p0, int p1){ return null; }
|
|
public static ByteBuf unmodifiableBuffer(ByteBuf p0){ return null; }
|
|
public static ByteBuf unmodifiableBuffer(ByteBuf... p0){ return null; }
|
|
public static ByteBuf unreleasableBuffer(ByteBuf p0){ return null; }
|
|
public static ByteBuf wrappedBuffer(ByteBuf p0){ return null; }
|
|
public static ByteBuf wrappedBuffer(ByteBuf... p0){ return null; }
|
|
public static ByteBuf wrappedBuffer(ByteBuffer p0){ return null; }
|
|
public static ByteBuf wrappedBuffer(ByteBuffer... p0){ return null; }
|
|
public static ByteBuf wrappedBuffer(byte[] p0){ return null; }
|
|
public static ByteBuf wrappedBuffer(byte[] p0, int p1, int p2){ return null; }
|
|
public static ByteBuf wrappedBuffer(byte[]... p0){ return null; }
|
|
public static ByteBuf wrappedBuffer(int p0, ByteBuf... p1){ return null; }
|
|
public static ByteBuf wrappedBuffer(int p0, ByteBuffer... p1){ return null; }
|
|
public static ByteBuf wrappedBuffer(int p0, byte[]... p1){ return null; }
|
|
public static ByteBuf wrappedBuffer(long p0, int p1, boolean p2){ return null; }
|
|
public static ByteBuf wrappedUnmodifiableBuffer(ByteBuf... p0){ return null; }
|
|
public static ByteOrder BIG_ENDIAN = null;
|
|
public static ByteOrder LITTLE_ENDIAN = null;
|
|
public static CompositeByteBuf compositeBuffer(){ return null; }
|
|
public static CompositeByteBuf compositeBuffer(int p0){ return null; }
|
|
}
|