Package one.microstream.collections.old
Class AbstractOldGettingList<E>
java.lang.Object
one.microstream.collections.old.AbstractOldGettingList<E>
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,List<E>
,OldCollection<E>
,OldList<E>
- Direct Known Subclasses:
AbstractOldRemovingList
,AbstractOldSettingList
,ArrayView.OldArrayView
,ConstList.OldConstList
,EqConstList.OldConstList
,ListView.OldListView
public abstract class AbstractOldGettingList<E> extends Object implements OldList<E>
-
Constructor Summary
Constructors Constructor Description AbstractOldGettingList()
-
Method Summary
Modifier and Type Method Description void
add(int index, E element)
boolean
add(E e)
boolean
addAll(int index, Collection<? extends E> c)
boolean
addAll(Collection<? extends E> c)
void
clear()
boolean
contains(Object o)
boolean
containsAll(Collection<?> c)
E
get(int index)
int
indexOf(Object o)
boolean
isEmpty()
Iterator<E>
iterator()
int
lastIndexOf(Object o)
ListIterator<E>
listIterator()
ListIterator<E>
listIterator(int index)
XGettingList<E>
parent()
E
remove(int index)
boolean
remove(Object o)
boolean
removeAll(Collection<?> c)
boolean
retainAll(Collection<?> c)
E
set(int index, E element)
int
size()
AbstractOldGettingList<E>
subList(int fromIndex, int toIndex)
Object[]
toArray()
String
toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.List
equals, hashCode, replaceAll, sort, spliterator, toArray
-
Constructor Details
-
AbstractOldGettingList
public AbstractOldGettingList()
-
-
Method Details
-
parent
-
add
- Specified by:
add
in interfaceCollection<E>
- Specified by:
add
in interfaceList<E>
- Throws:
UnsupportedOperationException
-
add
- Specified by:
add
in interfaceList<E>
- Throws:
UnsupportedOperationException
-
addAll
- Specified by:
addAll
in interfaceCollection<E>
- Specified by:
addAll
in interfaceList<E>
- Throws:
UnsupportedOperationException
-
addAll
- Specified by:
addAll
in interfaceList<E>
- Throws:
UnsupportedOperationException
-
clear
- Specified by:
clear
in interfaceCollection<E>
- Specified by:
clear
in interfaceList<E>
- Throws:
UnsupportedOperationException
-
contains
-
containsAll
- Specified by:
containsAll
in interfaceCollection<E>
- Specified by:
containsAll
in interfaceList<E>
-
get
-
indexOf
-
isEmpty
public boolean isEmpty() -
iterator
-
lastIndexOf
- Specified by:
lastIndexOf
in interfaceList<E>
-
listIterator
- Specified by:
listIterator
in interfaceList<E>
-
listIterator
- Specified by:
listIterator
in interfaceList<E>
-
remove
- Specified by:
remove
in interfaceCollection<E>
- Specified by:
remove
in interfaceList<E>
- Throws:
UnsupportedOperationException
-
remove
- Specified by:
remove
in interfaceList<E>
- Throws:
UnsupportedOperationException
-
removeAll
- Specified by:
removeAll
in interfaceCollection<E>
- Specified by:
removeAll
in interfaceList<E>
- Throws:
UnsupportedOperationException
-
retainAll
- Specified by:
retainAll
in interfaceCollection<E>
- Specified by:
retainAll
in interfaceList<E>
- Throws:
UnsupportedOperationException
-
set
-
size
public int size() -
subList
-
toArray
-
toString
-