Uses of Interface
org.tquadrat.foundation.util.HeadTailList
Packages that use HeadTailList
Package
Description
The utility classes provided for the Foundation
library.
Internal utility classes for the util module of the Foundation library plus
the implementations for the exported components.
-
Uses of HeadTailList in org.tquadrat.foundation.util
Methods in org.tquadrat.foundation.util that return HeadTailListModifier and TypeMethodDescriptionReturns a new list with the given element as the head, and this list as the tail.default HeadTailList
<T> HeadTailList.append
(Collection<T> list) Returns a new list where the given list is appended to the end of this list.default HeadTailList
<T> HeadTailList.append
(HeadTailList<T> list) Returns a new list where the given list is appended to the end of this list.static <E> HeadTailList
<E> HeadTailList.empty()
Returns an empty list.static <E> HeadTailList
<E> HeadTailList.from
(E... elements) Creates a new list from the given elements.static <E> HeadTailList
<E> HeadTailList.from
(Collection<E> source) Creates a new list from the givenCollection
.default HeadTailList
<T> HeadTailList.merge
(HeadTailList<? extends T> list) Returns a new list where the given list is merged into this list.default HeadTailList
<T> HeadTailList.prepend
(Collection<T> list) Returns a new list where the entries of the given list are placed before the first entry of this list.default HeadTailList
<T> HeadTailList.prepend
(HeadTailList<T> list) Returns a new list where this list is appended to the end of the given list.default HeadTailList
<T> Returns a copy of this list that does not contain the given element.default HeadTailList
<T> HeadTailList.replaceHead
(T newHead) Returns a new copy of this list where the head element is replaced by the given element.default HeadTailList
<T> HeadTailList.revert()
Revert the list; that means that the sequence of the elements in the new list is in reverse order that in this one.HeadTailList.tail()
Returns the tail of the list.Methods in org.tquadrat.foundation.util with parameters of type HeadTailListModifier and TypeMethodDescriptiondefault HeadTailList
<T> HeadTailList.append
(HeadTailList<T> list) Returns a new list where the given list is appended to the end of this list.default HeadTailList
<T> HeadTailList.merge
(HeadTailList<? extends T> list) Returns a new list where the given list is merged into this list.default HeadTailList
<T> HeadTailList.prepend
(HeadTailList<T> list) Returns a new list where this list is appended to the end of the given list. -
Uses of HeadTailList in org.tquadrat.foundation.util.internal
Classes in org.tquadrat.foundation.util.internal that implement HeadTailListFields in org.tquadrat.foundation.util.internal declared as HeadTailListModifier and TypeFieldDescriptionprivate HeadTailList
<T> HeadTailListImpl.IteratorImpl.m_CurrentList
The current list.private static final HeadTailList
<?> HeadTailListImpl.m_EmptyList
The empty list.private final HeadTailList
<T> HeadTailListImpl.m_Tail
The tail list.Methods in org.tquadrat.foundation.util.internal that return HeadTailListModifier and TypeMethodDescriptionfinal HeadTailList
<T> Returns a new list with the given element as the head, and this list as the tail.static final <E> HeadTailList
<E> HeadTailListImpl.empty()
Returns an empty list.final HeadTailList
<T> HeadTailListImpl.tail()
Returns the tail of the list.Constructors in org.tquadrat.foundation.util.internal with parameters of type HeadTailListModifierConstructorDescriptionprivate
HeadTailListImpl
(T head, HeadTailList<T> tail) Creates a newHeadTailListImpl
instance.IteratorImpl
(HeadTailList<T> list) Creates a newIteratorImpl
instance.