Class AbstractListDecorator<E>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator<E>
-
- org.apache.openjpa.lib.util.collections.AbstractListDecorator<E>
-
- Type Parameters:
E
- the type of the elements in the list
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Iterable<E>
,java.util.Collection<E>
,java.util.List<E>
- Direct Known Subclasses:
AbstractSerializableListDecorator
public abstract class AbstractListDecorator<E> extends AbstractCollectionDecorator<E> implements java.util.List<E>
Decorates anotherList
to provide additional behaviour.Methods are forwarded directly to the decorated list.
- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractListDecorator()
Constructor only used in deserialization, do not use otherwise.protected
AbstractListDecorator(java.util.List<E> list)
Constructor that wraps (not copies).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int index, E object)
boolean
addAll(int index, java.util.Collection<? extends E> coll)
protected java.util.List<E>
decorated()
Gets the list being decorated.boolean
equals(java.lang.Object object)
E
get(int index)
int
hashCode()
int
indexOf(java.lang.Object object)
int
lastIndexOf(java.lang.Object object)
java.util.ListIterator<E>
listIterator()
java.util.ListIterator<E>
listIterator(int index)
E
remove(int index)
E
set(int index, E object)
java.util.List<E>
subList(int fromIndex, int toIndex)
-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, removeIf, retainAll, setCollection, size, toArray, toArray, toString
-
-
-
-
Constructor Detail
-
AbstractListDecorator
protected AbstractListDecorator()
Constructor only used in deserialization, do not use otherwise.- Since:
- 3.1
-
AbstractListDecorator
protected AbstractListDecorator(java.util.List<E> list)
Constructor that wraps (not copies).- Parameters:
list
- the list to decorate, must not be null- Throws:
java.lang.NullPointerException
- if list is null
-
-
Method Detail
-
decorated
protected java.util.List<E> decorated()
Gets the list being decorated.- Overrides:
decorated
in classAbstractCollectionDecorator<E>
- Returns:
- the decorated list
-
equals
public boolean equals(java.lang.Object object)
-
hashCode
public int hashCode()
-
addAll
public boolean addAll(int index, java.util.Collection<? extends E> coll)
- Specified by:
addAll
in interfacejava.util.List<E>
-
indexOf
public int indexOf(java.lang.Object object)
- Specified by:
indexOf
in interfacejava.util.List<E>
-
lastIndexOf
public int lastIndexOf(java.lang.Object object)
- Specified by:
lastIndexOf
in interfacejava.util.List<E>
-
listIterator
public java.util.ListIterator<E> listIterator()
- Specified by:
listIterator
in interfacejava.util.List<E>
-
listIterator
public java.util.ListIterator<E> listIterator(int index)
- Specified by:
listIterator
in interfacejava.util.List<E>
-
-