Module org.tquadrat.foundation.util
Class LazySetImpl<E>
java.lang.Object
org.tquadrat.foundation.util.internal.LazySetImpl<E>
- Type Parameters:
E
- The type of elements in this set.
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,Set<E>
,LazySet<E>
@ClassVersion(sourceVersion="$Id: LazySetImpl.java 1060 2023-09-24 19:21:40Z tquadrat $")
@API(status=INTERNAL,
since="0.0.5")
public final class LazySetImpl<E>
extends Object
implements LazySet<E>
The implementation for
LazySet
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: LazySetImpl.java 1060 2023-09-24 19:21:40Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.util.internal.LazySetImpl"
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe holder for the real set.private final boolean
The flag that indicates whether the provided supplier will put values to the set on initialisation. -
Constructor Summary
ConstructorsConstructorDescriptionLazySetImpl
(boolean doPopulate, Supplier<? extends Set<E>> supplier) Creates a newLazySetImpl
instance.LazySetImpl
(Set<E> value) Creates a newLazySetImpl
instance that is initialised with the given value. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
final boolean
addAll
(Collection<? extends E> c) final void
clear()
final boolean
final boolean
containsAll
(Collection<?> c) final boolean
final void
final int
hashCode()
void
If thisLazySet
instance has been initialised already, the providedConsumer
will be executed; otherwise nothing happens.final void
init()
Forces the initialisation of thisLazySet
instance.final boolean
isEmpty()
final boolean
Checks whether thisLazySet
instance has been initialised already.iterator()
final boolean
final boolean
removeAll
(Collection<?> c) final boolean
final boolean
retainAll
(Collection<?> c) final int
size()
final Spliterator
<E> 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
-
Field Details
-
m_Holder
The holder for the real set. -
m_SupplierPopulates
The flag that indicates whether the provided supplier will put values to the set on initialisation.
-
-
Constructor Details
-
LazySetImpl
Creates a newLazySetImpl
instance.- Parameters:
doPopulate
-true
if the provided supplier will put values to the set on initialisation,false
if it will create an empty set.supplier
- The supplier that initialises the internal set for this instance when it is first needed.
-
LazySetImpl
Creates a newLazySetImpl
instance that is initialised with the given value.- Parameters:
value
- The initialisation value.
-
-
Method Details
-
add
-
addAll
-
clear
-
contains
-
containsAll
- Specified by:
containsAll
in interfaceCollection<E>
- Specified by:
containsAll
in interfaceSet<E>
-
equals
-
forEach
-
hashCode
-
ifPresent
If thisLazySet
instance has been initialised already, the providedConsumer
will be executed; otherwise nothing happens. -
init
Forces the initialisation of thisLazySet
instance. -
isEmpty
-
isPresent
Checks whether thisLazySet
instance has been initialised already. -
iterator
-
remove
-
removeAll
-
removeIf
- Specified by:
removeIf
in interfaceCollection<E>
-
retainAll
-
size
-
spliterator
- Specified by:
spliterator
in interfaceCollection<E>
- Specified by:
spliterator
in interfaceIterable<E>
- Specified by:
spliterator
in interfaceSet<E>
-
toArray
-
toArray
-
toString
-