- java.lang.Object
-
- cn.mcres.karlatemp.mxlib.util.WrappedObject<DataInput>
-
- cn.mcres.karlatemp.mxlib.util.WrappedDataInput
-
- 所有已实现的接口:
DataInput
public class WrappedDataInput extends WrappedObject<DataInput> implements DataInput
-
-
构造器概要
构造器 构造器 说明 WrappedDataInput()
-
方法概要
修饰符和类型 方法 说明 boolean
readBoolean()
byte
readByte()
char
readChar()
double
readDouble()
float
readFloat()
void
readFully(@org.jetbrains.annotations.NotNull byte[] b)
void
readFully(@org.jetbrains.annotations.NotNull byte[] b, int off, int len)
int
readInt()
String
readLine()
long
readLong()
short
readShort()
int
readUnsignedByte()
int
readUnsignedShort()
@NotNull String
readUTF()
int
skipBytes(int n)
-
-
-
方法详细资料
-
readFully
public void readFully(@NotNull @org.jetbrains.annotations.NotNull byte[] b) throws IOException
- 指定者:
readFully
在接口中DataInput
- 抛出:
IOException
-
readFully
public void readFully(@NotNull @org.jetbrains.annotations.NotNull byte[] b, int off, int len) throws IOException
- 指定者:
readFully
在接口中DataInput
- 抛出:
IOException
-
skipBytes
public int skipBytes(int n) throws IOException
- 指定者:
skipBytes
在接口中DataInput
- 抛出:
IOException
-
readBoolean
public boolean readBoolean() throws IOException
- 指定者:
readBoolean
在接口中DataInput
- 抛出:
IOException
-
readByte
public byte readByte() throws IOException
- 指定者:
readByte
在接口中DataInput
- 抛出:
IOException
-
readUnsignedByte
public int readUnsignedByte() throws IOException
- 指定者:
readUnsignedByte
在接口中DataInput
- 抛出:
IOException
-
readShort
public short readShort() throws IOException
- 指定者:
readShort
在接口中DataInput
- 抛出:
IOException
-
readUnsignedShort
public int readUnsignedShort() throws IOException
- 指定者:
readUnsignedShort
在接口中DataInput
- 抛出:
IOException
-
readChar
public char readChar() throws IOException
- 指定者:
readChar
在接口中DataInput
- 抛出:
IOException
-
readInt
public int readInt() throws IOException
- 指定者:
readInt
在接口中DataInput
- 抛出:
IOException
-
readLong
public long readLong() throws IOException
- 指定者:
readLong
在接口中DataInput
- 抛出:
IOException
-
readFloat
public float readFloat() throws IOException
- 指定者:
readFloat
在接口中DataInput
- 抛出:
IOException
-
readDouble
public double readDouble() throws IOException
- 指定者:
readDouble
在接口中DataInput
- 抛出:
IOException
-
readLine
public String readLine() throws IOException
- 指定者:
readLine
在接口中DataInput
- 抛出:
IOException
-
readUTF
@NotNull public @NotNull String readUTF() throws IOException
- 指定者:
readUTF
在接口中DataInput
- 抛出:
IOException
-
-