Class CharSequenceLocalAppendableColumn<DATA_TYPE extends CharSequence>
java.lang.Object
com.illumon.iris.db.tables.appendable.BaseAppendableColumn<DATA_TYPE>
com.illumon.iris.db.tables.appendable.local.LocalAppendableColumn<DATA_TYPE>
com.illumon.iris.db.tables.appendable.local.VariableWidthObjectLocalAppendableColumn<DATA_TYPE>
com.illumon.iris.db.tables.appendable.local.BufferVariableWidthObjectLocalAppendableColumn<DATA_TYPE>
com.illumon.iris.db.tables.appendable.local.CharSequenceLocalAppendableColumn<DATA_TYPE>
- All Implemented Interfaces:
AppendableColumn<DATA_TYPE>
,BufferedAppendable
,BufferedAppendableColumn<DATA_TYPE>
,TableTransactionProcessor
public class CharSequenceLocalAppendableColumn<DATA_TYPE extends CharSequence> extends BufferVariableWidthObjectLocalAppendableColumn<DATA_TYPE>
AppendableColumn for outputting CharSequence objects to a local column location.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.illumon.iris.db.tables.appendable.local.LocalAppendableColumn
LocalAppendableColumn.ValueSupplier<DATA_TYPE>
-
Field Summary
Fields inherited from interface com.illumon.iris.db.tables.appendable.AppendableColumn
DEFAULT_CHUNK_CAPACITY
-
Method Summary
Modifier and Type Method Description protected ByteBuffer
toBytes(DATA_TYPE value, ByteBuffer outputBuffer)
Convert value to bytes in a ByteBuffer.Methods inherited from class com.illumon.iris.db.tables.appendable.local.BufferVariableWidthObjectLocalAppendableColumn
add, addComputed
Methods inherited from class com.illumon.iris.db.tables.appendable.local.VariableWidthObjectLocalAppendableColumn
abortTransaction, addEncoded, close, doneAppending, finishTransaction, flush, force, release, startTransaction
Methods inherited from class com.illumon.iris.db.tables.appendable.local.LocalAppendableColumn
addByte, addByte, addBytes, addBytes, addChar, addChar, addChars, addDouble, addDouble, addDoubles, addFloat, addFloat, addFloats, addFromBooleanChunk, addFromByteChunk, addFromCharChunk, addFromDoubleChunk, addFromFloatChunk, addFromIntChunk, addFromLongChunk, addFromObjectChunk, addFromShortChunk, addInt, addInt, addInts, addLong, addLong, addLongs, addShort, addShort, addShorts, inTransaction, toString
Methods inherited from class com.illumon.iris.db.tables.appendable.BaseAppendableColumn
add, add, addBoolean, addBoolean, addBooleans, checkArrayAddBounds, encodeExternalizable, encodeSerializable, getAddHelper, getName, getType
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.illumon.iris.db.tables.appendable.AppendableColumn
add, add, addBoolean, addBoolean, addBooleans, addFromArray, addFromBoxedValue, addFromBoxedValue, addFromChunk, addFromChunkSource, addFromChunkSource, addFromChunkSource, addFromColumnSource, addFromColumnSource, addFromColumnSource, addFromColumnSource, addFromDataColumn, getAddHelper, getName, getType
Methods inherited from interface com.illumon.iris.db.tables.appendable.BufferedAppendable
maybeForce, prepareCheckpoint
-
Method Details
-
toBytes
Description copied from class:BufferVariableWidthObjectLocalAppendableColumn
Convert value to bytes in a ByteBuffer.- Specified by:
toBytes
in classBufferVariableWidthObjectLocalAppendableColumn<DATA_TYPE extends CharSequence>
- Parameters:
value
- The value to convertoutputBuffer
- The initial output buffer- Returns:
- The (possibly new and larger) output buffer, positioned for reading
-