Interface RecordsFile.Record
- All Known Implementing Classes:
RecordsFileImpl.RecordImpl
- Enclosing interface:
RecordsFile
public static interface RecordsFile.Record
-
Method Summary
Modifier and TypeMethodDescriptionintgetByte(int n) byte[]getBytes()byte[]getBytes(int n) doublegetDouble(int n) intgetInt(int n) longgetLong(int n) intgetShort(int n) getString(int n) getTimestamp(int n) getType()voidsetByte(int n, byte v) voidsetBytes(byte[] bytes) voidsetBytes(int n, byte[] v) voidsetDouble(int n, double v) voidsetInt(int n, int v) voidsetLong(int n, long v) voidsetShort(int n, short v) voidvoidsetTimestamp(int n, Timestamp v)
-
Method Details
-
getType
RecordsFile.RecordType getType() -
getBytes
byte[] getBytes() -
setBytes
void setBytes(byte[] bytes) -
getBuffer
ByteBuffer getBuffer() -
getByte
int getByte(int n) -
getShort
int getShort(int n) -
getInt
int getInt(int n) -
getLong
long getLong(int n) -
getDouble
double getDouble(int n) -
getTimestamp
-
getString
-
getBytes
byte[] getBytes(int n) -
setByte
void setByte(int n, byte v) -
setShort
void setShort(int n, short v) -
setInt
void setInt(int n, int v) -
setLong
void setLong(int n, long v) -
setDouble
void setDouble(int n, double v) -
setTimestamp
-
setString
-
setBytes
void setBytes(int n, byte[] v)
-