Class BinaryType
- java.lang.Object
-
- org.apache.iotdb.tsfile.read.common.type.BinaryType
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ColumnBuildercreateColumnBuilder(int expectedEntries)Creates the preferred column builder for this type.BinarygetBinary(Column c, int position)Gets a Binary atposition.static BinaryTypegetInstance()TypeEnumgetTypeEnum()voidwriteBinary(ColumnBuilder builder, Binary value)Write a Binary to the current entry;-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.iotdb.tsfile.read.common.type.Type
getBoolean, getDouble, getFloat, getInt, getLong, getObject, writeBoolean, writeDouble, writeFloat, writeInt, writeLong, writeObject
-
-
-
-
Method Detail
-
getBinary
public Binary getBinary(Column c, int position)
Description copied from interface:TypeGets a Binary atposition.
-
writeBinary
public void writeBinary(ColumnBuilder builder, Binary value)
Description copied from interface:TypeWrite a Binary to the current entry;- Specified by:
writeBinaryin interfaceType
-
createColumnBuilder
public ColumnBuilder createColumnBuilder(int expectedEntries)
Description copied from interface:TypeCreates the preferred column builder for this type. This is the builder used to store values after an expression projection within the read.- Specified by:
createColumnBuilderin interfaceType
-
getTypeEnum
public TypeEnum getTypeEnum()
- Specified by:
getTypeEnumin interfaceType
-
getInstance
public static BinaryType getInstance()
-
-