Interface VarByteChunkWriter
-
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Implementing Classes:
VarByteChunkForwardIndexWriter,VarByteChunkForwardIndexWriterV4
public interface VarByteChunkWriter extends Closeable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidputBigDecimal(BigDecimal value)voidputBytes(byte[] value)voidputBytesMV(byte[][] values)voidputString(String value)voidputStringMV(String[] values)
-
-
-
Method Detail
-
putBigDecimal
void putBigDecimal(BigDecimal value)
-
putString
void putString(String value)
-
putBytes
void putBytes(byte[] value)
-
putStringMV
void putStringMV(String[] values)
-
putBytesMV
void putBytesMV(byte[][] values)
-
-