Module org.tquadrat.foundation.util
Class LazyListImpl<E>
java.lang.Object
org.tquadrat.foundation.util.internal.LazyListImpl<E>
- Type Parameters:
E
- The type of elements in this list.
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,List<E>
,SequencedCollection<E>
,LazyList<E>
@ClassVersion(sourceVersion="$Id: LazyListImpl.java 1060 2023-09-24 19:21:40Z tquadrat $")
@API(status=INTERNAL,
since="0.0.5")
public final class LazyListImpl<E>
extends Object
implements LazyList<E>
The implementation for
LazyList
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: LazyListImpl.java 1060 2023-09-24 19:21:40Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.util.internal.LazyListImpl"
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe holder for the real list.private final boolean
The flag that indicates whether the provided supplier will put values to the list on initialisation. -
Constructor Summary
ConstructorsConstructorDescriptionLazyListImpl
(boolean doPopulate, Supplier<? extends List<E>> supplier) Creates a newLazyListImpl
instance.LazyListImpl
(List<E> value) Creates a newLazyListImpl
instance that is initialised with the given value. -
Method Summary
Modifier and TypeMethodDescriptionfinal void
final boolean
final boolean
addAll
(int index, Collection<? extends E> c) final boolean
addAll
(Collection<? extends E> c) final void
clear()
final boolean
final boolean
containsAll
(Collection<?> c) final boolean
final void
final E
get
(int index) final int
hashCode()
final void
If thisLazyList
instance has been initialised already, the providedConsumer
will be executed; otherwise nothing happens.final int
final void
init()
Forces the initialisation of thisLazyList
instance.final boolean
isEmpty()
final boolean
Checks whether thisLazyList
instance has been initialised already.iterator()
final int
final ListIterator
<E> final ListIterator
<E> listIterator
(int index) final E
remove
(int index) final boolean
final boolean
removeAll
(Collection<?> c) final boolean
final void
replaceAll
(UnaryOperator<E> operator) final boolean
retainAll
(Collection<?> c) final E
final int
size()
final void
sort
(Comparator<? super E> c) final Spliterator
<E> subList
(int fromIndex, int toIndex) final Object[]
toArray()
final <T> T[]
toArray
(T[] a) final String
toString()
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
Methods inherited from interface java.util.List
addFirst, addLast, getFirst, getLast, removeFirst, removeLast, reversed
-
Field Details
-
m_Holder
The holder for the real list. -
m_SupplierPopulates
The flag that indicates whether the provided supplier will put values to the list on initialisation.
-
-
Constructor Details
-
LazyListImpl
Creates a newLazyListImpl
instance.- Parameters:
doPopulate
-true
if the provided supplier will put values to the list on initialisation,false
if it will create an empty list.supplier
- The supplier that initialises the internal list for this instance when it is first needed.
-
LazyListImpl
Creates a newLazyListImpl
instance that is initialised with the given value.- Parameters:
value
- The initialisation value.
-
-
Method Details
-
add
-
add
-
addAll
-
addAll
-
clear
-
contains
-
containsAll
- Specified by:
containsAll
in interfaceCollection<E>
- Specified by:
containsAll
in interfaceList<E>
-
equals
-
forEach
-
get
-
ifPresent
If thisLazyList
instance has been initialised already, the providedConsumer
will be executed; otherwise nothing happens. -
indexOf
-
hashCode
-
init
Forces the initialisation of thisLazyList
instance. -
isEmpty
-
isPresent
Checks whether thisLazyList
instance has been initialised already. -
iterator
-
lastIndexOf
- Specified by:
lastIndexOf
in interfaceList<E>
-
listIterator
- Specified by:
listIterator
in interfaceList<E>
-
listIterator
- Specified by:
listIterator
in interfaceList<E>
-
remove
-
remove
-
removeAll
-
removeIf
- Specified by:
removeIf
in interfaceCollection<E>
-
replaceAll
- Specified by:
replaceAll
in interfaceList<E>
-
retainAll
-
set
-
size
-
sort
-
spliterator
- Specified by:
spliterator
in interfaceCollection<E>
- Specified by:
spliterator
in interfaceIterable<E>
- Specified by:
spliterator
in interfaceList<E>
-
subList
-
toArray
-
toArray
-
toString
-