Package com.intellij.util.io
Class DataInputOutputUtil
- java.lang.Object
-
- com.intellij.util.io.DataInputOutputUtil
-
public class DataInputOutputUtil extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static long
timeBase
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
readINT(DataInput record)
static int
readSINT(DataInput record)
static long
readTIME(DataInput record)
static void
skipSINT(DataInput record)
static void
writeINT(DataOutput record, int val)
static void
writeSINT(DataOutput record, int val)
static void
writeTIME(DataOutput record, long timestamp)
-
-
-
Field Detail
-
timeBase
public static final long timeBase
- See Also:
- Constant Field Values
-
-
Method Detail
-
readINT
public static int readINT(DataInput record) throws IOException
- Throws:
IOException
-
writeINT
public static void writeINT(DataOutput record, int val) throws IOException
- Throws:
IOException
-
skipSINT
public static void skipSINT(DataInput record) throws IOException
- Throws:
IOException
-
readSINT
public static int readSINT(DataInput record) throws IOException
- Throws:
IOException
-
writeSINT
public static void writeSINT(DataOutput record, int val) throws IOException
- Throws:
IOException
-
writeTIME
public static void writeTIME(DataOutput record, long timestamp) throws IOException
- Throws:
IOException
-
readTIME
public static long readTIME(DataInput record) throws IOException
- Throws:
IOException
-
-