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 Modifier Constructor Description protected
AbstractOldGettingList(XGettingList<E> list)
-
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()
<T> T[]
toArray(T[] target)
String
toString()
-
Constructor Details
-
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
-
toArray
public <T> T[] toArray(T[] target) -
toString
-