Module datarush.library
Interface MutableObjectTokenSequence<O>
- Type Parameters:
O- the type of Java objects in the sequence
- All Superinterfaces:
MutableScalarTokenSequence,MutableTokenSequence,ObjectTokenSequence<O>,ObjectTyped<O>,ScalarTokenAppendable,ScalarTokenSequence,ScalarTyped,TokenAppendable,TokenSequence,TokenTyped
- All Known Implementing Classes:
ObjectTokenList,SparseObjectTokenList
public interface MutableObjectTokenSequence<O>
extends ObjectTokenSequence<O>, MutableScalarTokenSequence
A
MutableTokenSequence containing object valued data.- See Also:
-
TokenTypeConstant#OBJECT(Class)
-
Method Summary
Modifier and TypeMethodDescriptionvoidAppends the specified object to this sequence.voidAppends the specified object to this sequence multiple times.getTokenSetter(int index) Returns a mutator for the given index.voidSets the token at the specified position to the given value.Methods inherited from interface com.pervasive.datarush.sequences.scalar.MutableScalarTokenSequence
ensureCanonical, getModificationCountMethods inherited from interface com.pervasive.datarush.sequences.MutableTokenSequence
appendNull, appendNull, appendZero, appendZero, fillValue, reset, setNull, setNull, setValue, setValues, setZero, setZeroMethods inherited from interface com.pervasive.datarush.sequences.scalar.ObjectTokenSequence
getObject, getToken, getType, getValues, newValueIteratorMethods inherited from interface com.pervasive.datarush.sequences.scalar.ScalarTokenSequence
isNull, isZeroMethods inherited from interface com.pervasive.datarush.sequences.TokenAppendable
append, append, append, appendMethods inherited from interface com.pervasive.datarush.sequences.TokenSequence
compareElement, compareElements, getElementComparator, hashCode, isNull, size, toString
-
Method Details
-
append
Appends the specified object to this sequence.- Parameters:
value- the value to append. Ifnull, this is equivalent toappendNull().
-
append
Appends the specified object to this sequence multiple times.- Parameters:
value- the value to append. Ifnull, this is equivalent toappendNull(count).count- the number of copies to append.
-
setObject
Sets the token at the specified position to the given value.- Parameters:
index- the position to modifyvalue- the new value
-
getTokenSetter
Description copied from interface:MutableTokenSequenceReturns a mutator for the given index.- Specified by:
getTokenSetterin interfaceMutableScalarTokenSequence- Specified by:
getTokenSetterin interfaceMutableTokenSequence- Parameters:
index- the position- Returns:
- a mutator for the given index.
-