Class BooleanType
- java.lang.Object
-
- org.apache.iotdb.tsfile.read.common.type.BooleanType
-
-
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.booleangetBoolean(Column c, int position)Gets a boolean atposition.static BooleanTypegetInstance()TypeEnumgetTypeEnum()voidwriteBoolean(ColumnBuilder builder, boolean value)Write a boolean 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
getBinary, getDouble, getFloat, getInt, getLong, getObject, writeBinary, writeDouble, writeFloat, writeInt, writeLong, writeObject
-
-
-
-
Method Detail
-
getBoolean
public boolean getBoolean(Column c, int position)
Description copied from interface:TypeGets a boolean atposition.- Specified by:
getBooleanin interfaceType
-
writeBoolean
public void writeBoolean(ColumnBuilder builder, boolean value)
Description copied from interface:TypeWrite a boolean to the current entry;- Specified by:
writeBooleanin 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 BooleanType getInstance()
-
-