mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
41 lines
1.5 KiB
Java
Generated
41 lines
1.5 KiB
Java
Generated
// Generated automatically from io.netty.buffer.ByteBufInputStream for testing purposes
|
|
|
|
package io.netty.buffer;
|
|
|
|
import io.netty.buffer.ByteBuf;
|
|
import java.io.DataInput;
|
|
import java.io.InputStream;
|
|
|
|
public class ByteBufInputStream extends InputStream implements DataInput
|
|
{
|
|
protected ByteBufInputStream() {}
|
|
public ByteBufInputStream(ByteBuf p0){}
|
|
public ByteBufInputStream(ByteBuf p0, boolean p1){}
|
|
public ByteBufInputStream(ByteBuf p0, int p1){}
|
|
public ByteBufInputStream(ByteBuf p0, int p1, boolean p2){}
|
|
public String readLine(){ return null; }
|
|
public String readUTF(){ return null; }
|
|
public boolean markSupported(){ return false; }
|
|
public boolean readBoolean(){ return false; }
|
|
public byte readByte(){ return 0; }
|
|
public char readChar(){ return '0'; }
|
|
public double readDouble(){ return 0; }
|
|
public float readFloat(){ return 0; }
|
|
public int available(){ return 0; }
|
|
public int read(){ return 0; }
|
|
public int read(byte[] p0, int p1, int p2){ return 0; }
|
|
public int readBytes(){ return 0; }
|
|
public int readInt(){ return 0; }
|
|
public int readUnsignedByte(){ return 0; }
|
|
public int readUnsignedShort(){ return 0; }
|
|
public int skipBytes(int p0){ return 0; }
|
|
public long readLong(){ return 0; }
|
|
public long skip(long p0){ return 0; }
|
|
public short readShort(){ return 0; }
|
|
public void close(){}
|
|
public void mark(int p0){}
|
|
public void readFully(byte[] p0){}
|
|
public void readFully(byte[] p0, int p1, int p2){}
|
|
public void reset(){}
|
|
}
|