Module datarush.library
Interface MutableRecordTokenSequence
-
- All Superinterfaces:
MutableTokenSequence,RecordTokenAppendable,RecordTokenSequence,RecordTyped,TokenAppendable,TokenSequence,TokenTyped
- All Known Implementing Classes:
RecordTokenList,SparseRecordTokenList
public interface MutableRecordTokenSequence extends RecordTokenSequence, MutableTokenSequence, RecordTokenAppendable
AMutableTokenSequenceof composite tokens, representing record data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecordSettablegetTokenSetter(int index)Returns a mutator for the given index.-
Methods inherited from interface com.pervasive.datarush.sequences.MutableTokenSequence
appendNull, appendNull, appendZero, appendZero, fillValue, reset, setNull, setNull, setValue, setValues, setZero, setZero
-
Methods inherited from interface com.pervasive.datarush.sequences.record.RecordTokenSequence
columns, compareElement, compareElements, containsNull, getColumn, getElementComparator, getElementComparator, getElementComparator, getToken, newValueIterator
-
Methods inherited from interface com.pervasive.datarush.types.RecordTyped
getType
-
Methods inherited from interface com.pervasive.datarush.sequences.TokenAppendable
append, append, append, append
-
Methods inherited from interface com.pervasive.datarush.sequences.TokenSequence
hashCode, isNull, size, toString
-
-
-
-
Method Detail
-
getTokenSetter
RecordSettable getTokenSetter(int index)
Description copied from interface:MutableTokenSequenceReturns a mutator for the given index.- Specified by:
getTokenSetterin interfaceMutableTokenSequence- Parameters:
index- the position- Returns:
- a mutator for the given index.
-
-