Package sprouts.impl
Class TupleImpl<T extends @Nullable Object>
java.lang.Object
sprouts.impl.TupleImpl<T>
- All Implemented Interfaces:
Iterable<T>
,SequenceDiffOwner
,Tuple<T>
public final class TupleImpl<T extends @Nullable Object>
extends Object
implements Tuple<T>, SequenceDiffOwner
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdds all items from the provided tuple of items tothis
tuple at a specified index.Creates an updated tuple of items where the supplied item is inserted at the specified index.boolean
A tuple will only allow nullable items if it was constructed with a "ofNullable(..)" factory method.clear()
Creates a new tuple of this one without any items but the same nullability (seeTuple.allowsNull()
).Provides aSequenceDiff
object that describes the difference between the current tuple and a previous one (if any), in terms of aSequenceChange
, the index of the change, and the number of changes.boolean
get
(int index) Exposes theMaybe
at the specified index.int
hashCode()
iterator()
Returns a new tuple of unique items, meaning that all duplicates in the original tuple are absent in the returned tuple.Creates a new tuple of items without the items of the provided tuple of items.removeRange
(int from, int to) Remove all elements within the rangefrom
inclusive andto
exclusive.Retains only the items in this tuple that are contained in the provided tuple of items.reversed()
Returns a new tuple with the exact same items as this tuple, but in reverse order.Creates and returns a new tuple from this one where all items from the provided tuple of items, are set starting at the specified index, effectively replacing the items in the specified range of this tuple in the new tuple.Creates a new tuple of items where the item at the specified index is replaced with the supplied item.int
size()
Exposes the size of the tuple of items, which is the number of items in the tuple.slice
(int from, int to) Returns a new tuple of items consisting of the items in the rangefrom
inclusive andto
exclusive.sort
(Comparator<T> comparator) Use this for sorting the tuple of items.toString()
type()
Exposes the common type of the items in this tuple.
The type of the items in this tuple is retrieved from the firstMaybe
in the tuple.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface sprouts.Tuple
add, add, addAll, addAll, addAll, addAll, addAllAt, addAllAt, addAllAt, addAt, addIfNonNull, addIfNonNullAt, all, any, anyNull, contains, contains, first, firstIndexOf, firstIndexOf, firstIndexStartingFrom, indicesOf, isEmpty, isNotEmpty, last, lastIndexBefore, lastIndexOf, map, mapTo, none, remove, remove, removeAll, removeAll, removeAt, removeAt, removeFirst, removeFirst, removeFirstFound, removeFirstFound, removeFirstFoundIfNonNull, removeFirstFoundOrThrow, removeFirstFoundOrThrow, removeIf, removeIfNonNull, removeLast, removeLast, retainAll, retainAll, retainIf, setAllAt, setAllAt, setAllAt, setAt, setAt, setAt, setRange, setRange, sliceAt, sliceFirst, sliceLast, sort, stream, toList, toSet
-
Constructor Details
-
TupleImpl
-
TupleImpl
public TupleImpl(boolean allowsNull, Class<T> type, @Nullable Object items, @Nullable SequenceDiff diffToPrevious)
-
-
Method Details
-
type
Description copied from interface:Tuple
Exposes the common type of the items in this tuple.
The type of the items in this tuple is retrieved from the firstMaybe
in the tuple. SeeMaybe.type()
for more information. -
size
public int size()Description copied from interface:Tuple
Exposes the size of the tuple of items, which is the number of items in the tuple. This number may never be negative. -
get
Description copied from interface:Tuple
Exposes theMaybe
at the specified index. If the index is out of bounds, anIndexOutOfBoundsException
will be thrown. -
allowsNull
public boolean allowsNull()Description copied from interface:Tuple
A tuple will only allow nullable items if it was constructed with a "ofNullable(..)" factory method. Otherwise, it will throw anIllegalArgumentException
when trying to set anull
reference. This flag cannot be changed after the tuple has been constructed!- Specified by:
allowsNull
in interfaceTuple<T extends @Nullable Object>
- Returns:
true
, if this tuple can contain null,false
otherwise.
-
slice
Description copied from interface:Tuple
Returns a new tuple of items consisting of the items in the rangefrom
inclusive andto
exclusive. -
removeRange
Description copied from interface:Tuple
Remove all elements within the rangefrom
inclusive andto
exclusive.- Specified by:
removeRange
in interfaceTuple<T extends @Nullable Object>
- Parameters:
from
- the start index, inclusive.to
- the end index, exclusive.- Returns:
- A new tuple of items with the desired change.
-
removeAll
Description copied from interface:Tuple
Creates a new tuple of items without the items of the provided tuple of items. This is also true for duplicate items. -
addAt
Description copied from interface:Tuple
Creates an updated tuple of items where the supplied item is inserted at the specified index. -
setAt
Description copied from interface:Tuple
Creates a new tuple of items where the item at the specified index is replaced with the supplied item. -
addAllAt
Description copied from interface:Tuple
Adds all items from the provided tuple of items tothis
tuple at a specified index. -
setAllAt
Description copied from interface:Tuple
Creates and returns a new tuple from this one where all items from the provided tuple of items, are set starting at the specified index, effectively replacing the items in the specified range of this tuple in the new tuple. -
retainAll
Description copied from interface:Tuple
Retains only the items in this tuple that are contained in the provided tuple of items. This is also true for duplicate items. -
clear
Description copied from interface:Tuple
Creates a new tuple of this one without any items but the same nullability (seeTuple.allowsNull()
). This is conceptually equivalent to callingList.clear()
, but instead of returningvoid
, it returns a new tuple with the desired change. This instance remains completely unchanged. -
sort
Description copied from interface:Tuple
Use this for sorting the tuple of items.- Specified by:
sort
in interfaceTuple<T extends @Nullable Object>
- Parameters:
comparator
- The comparator to use for sorting (seeComparator
).- Returns:
- A new tuple of items with the items sorted according to the provided comparator.
-
makeDistinct
Description copied from interface:Tuple
Returns a new tuple of unique items, meaning that all duplicates in the original tuple are absent in the returned tuple.- Specified by:
makeDistinct
in interfaceTuple<T extends @Nullable Object>
- Returns:
- A new tuple of items with all duplicates removed.
-
reversed
Description copied from interface:Tuple
Returns a new tuple with the exact same items as this tuple, but in reverse order. -
iterator
-
toString
-
equals
-
hashCode
public int hashCode() -
differenceFromPrevious
Description copied from interface:SequenceDiffOwner
Provides aSequenceDiff
object that describes the difference between the current tuple and a previous one (if any), in terms of aSequenceChange
, the index of the change, and the number of changes. Use this at a consumer side to keep track of the changes and update the target object only according to the changes that have occurred, instead of rebuilding the target sequence entirely every time a change occurs.- Specified by:
differenceFromPrevious
in interfaceSequenceDiffOwner
- Returns:
- An
Optional
containing theSequenceDiff
object if there is a difference between the current tuple and a previous one, or an emptyOptional
otherwise.
-