Package ch.njol.util.coll
Class ReversedListView<T>
java.lang.Object
ch.njol.util.coll.ReversedListView<T>
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,List<T>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
boolean
addAll(int index, Collection<? extends T> c)
boolean
addAll(Collection<? extends T> c)
void
clear()
boolean
boolean
containsAll(@Nullable Collection<?> c)
boolean
@Nullable T
get(int index)
int
hashCode()
int
boolean
isEmpty()
iterator()
int
lastIndexOf(@Nullable Object o)
listIterator(int index)
@Nullable T
remove(int index)
boolean
boolean
removeAll(@Nullable Collection<?> c)
boolean
retainAll(@Nullable Collection<?> c)
@Nullable T
int
size()
subList(int fromIndex, int toIndex)
Object[]
toArray()
<R> R[]
toArray(R[] a)
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
-
Constructor Details
-
ReversedListView
-
-
Method Details
-
size
public int size() -
isEmpty
public boolean isEmpty() -
contains
-
iterator
-
listIterator
- Specified by:
listIterator
in interfaceList<T>
-
listIterator
- Specified by:
listIterator
in interfaceList<T>
-
toArray
-
toArray
public <R> R[] toArray(R[] a) -
add
-
remove
-
containsAll
- Specified by:
containsAll
in interfaceCollection<T>
- Specified by:
containsAll
in interfaceList<T>
-
addAll
-
addAll
-
removeAll
-
retainAll
-
clear
public void clear() -
get
-
set
-
add
-
remove
-
indexOf
-
lastIndexOf
- Specified by:
lastIndexOf
in interfaceList<T>
-
subList
-
hashCode
public int hashCode() -
equals
-