Class ListWithDefault<T>
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,List<T>
List
which automatically grows the list when either get(int)
or
getAt(int)
is called with an index greater than or equal to size()
.- Since:
- 1.8.7
-
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
boolean
addAll
(int i, Collection<? extends T> ts) boolean
addAll
(Collection<? extends T> ts) void
clear()
boolean
boolean
containsAll
(Collection<?> objects) boolean
get
(int index) Returns the element at the given index but grows the list if needed.getAt
(int index) Overwrites subscript operator handling by redirecting toget(int)
.int
hashCode()
int
boolean
isEmpty()
boolean
iterator()
int
listIterator
(int i) static <T> ListWithDefault<T>
newInstance
(List<T> items, boolean lazyDefaultValues, Closure initClosure) remove
(int i) boolean
boolean
removeAll
(Collection<?> objects) boolean
retainAll
(Collection<?> objects) int
size()
subList
(int fromIndex, int toIndex) Returns a view of a portion of this list.Object[]
toArray()
<U> U[]
toArray
(U[] ts) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
replaceAll, sort, spliterator
-
Method Details
-
getDelegate
-
isLazyDefaultValues
public boolean isLazyDefaultValues() -
getInitClosure
-
newInstance
public static <T> ListWithDefault<T> newInstance(List<T> items, boolean lazyDefaultValues, Closure initClosure) -
size
public int size() -
isEmpty
public boolean isEmpty() -
contains
-
iterator
-
toArray
-
toArray
public <U> U[] toArray(U[] ts) -
add
-
remove
-
containsAll
- Specified by:
containsAll
in interfaceCollection<T>
- Specified by:
containsAll
in interfaceList<T>
-
addAll
-
addAll
-
removeAll
-
retainAll
-
clear
public void clear() -
getAt
Overwrites subscript operator handling by redirecting toget(int)
.- Parameters:
index
- an index (might be greater or equal tosize()
, or smaller than 0)- Returns:
- the value at the given
index
or the default value
-
get
Returns the element at the given index but grows the list if needed. If the requestedindex
is greater than or equal tosize()
, the list will grow to the new size and a default value calculated using theinitClosure
will be used to populate the missing value and returned.If
lazyDefaultValues
istrue
any gaps when growing the list are filled with nulls. Subsequent attempts to retrieve items from the list from those gap index values will, upon finding null, call theinitClosure
to populate the list for the given list value. Hence, when in this mode, nulls cannot be stored in this list. IflazyDefaultValues
isfalse
any gaps when growing the list are filled eagerly by calling theinitClosure
for all gap indexes during list growth. No calls toinitClosure
are made except during list growth and it is ok to store null values in the list when in this mode.This implementation breaks the contract of
List.get(int)
as it a) possibly modifies the underlying list and b) does NOT throw anIndexOutOfBoundsException
whenindex < 0 || index >= size()
. -
set
-
add
-
remove
-
indexOf
-
lastIndexOf
- Specified by:
lastIndexOf
in interfaceList<T>
-
listIterator
- Specified by:
listIterator
in interfaceList<T>
-
listIterator
- Specified by:
listIterator
in interfaceList<T>
-
equals
-
hashCode
public int hashCode() -
subList
Returns a view of a portion of this list. This method returns a list with the same lazy list settings as the original list.
-