public class DelegatingResultList<T> extends java.lang.Object implements ResultList<T>
Modifier and Type | Class and Description |
---|---|
class |
DelegatingResultList.DelegatingListIterator<T>
Delegating iterator that also performs exception translation.
|
Constructor and Description |
---|
DelegatingResultList(ResultList<T> list)
Constructor; supply delegate.
|
DelegatingResultList(ResultList<T> list,
RuntimeExceptionTranslator trans)
Constructor; supply delegate and exception translator.
|
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
T element) |
boolean |
add(T o) |
boolean |
addAll(java.util.Collection<? extends T> c) |
boolean |
addAll(int index,
java.util.Collection<? extends T> c) |
void |
clear() |
void |
close()
Close the list.
|
boolean |
contains(java.lang.Object o) |
boolean |
containsAll(java.util.Collection<?> c) |
boolean |
equals(java.lang.Object other) |
T |
get(int index) |
ResultList<T> |
getDelegate()
Return the direct delegate.
|
ResultList<T> |
getInnermostDelegate()
Return the native delegate.
|
java.lang.Object |
getUserObject()
Get the opaque user object attached to this receiver.
|
int |
hashCode() |
int |
indexOf(java.lang.Object o) |
boolean |
isClosed()
Returns true if the list has been closed.
|
boolean |
isEmpty() |
boolean |
isProviderOpen()
Returns true if the provider backing this list is open.
|
java.util.Iterator<T> |
iterator() |
int |
lastIndexOf(java.lang.Object o) |
java.util.ListIterator<T> |
listIterator() |
java.util.ListIterator<T> |
listIterator(int index) |
T |
remove(int index) |
boolean |
remove(java.lang.Object o) |
boolean |
removeAll(java.util.Collection<?> c) |
boolean |
retainAll(java.util.Collection<?> c) |
T |
set(int index,
T element) |
void |
setUserObject(java.lang.Object opaque)
Set the opaque user object to this receiver.
|
int |
size() |
java.util.List<T> |
subList(int fromIndex,
int toIndex) |
java.lang.Object[] |
toArray() |
java.lang.Object[] |
toArray(java.lang.Object[] a) |
java.lang.String |
toString() |
protected java.lang.RuntimeException |
translate(java.lang.RuntimeException re)
Translate the OpenJPA exception.
|
java.lang.Object |
writeReplace()
Writes delegate, which may in turn write a normal list.
|
public DelegatingResultList(ResultList<T> list)
public DelegatingResultList(ResultList<T> list, RuntimeExceptionTranslator trans)
public ResultList<T> getDelegate()
public ResultList<T> getInnermostDelegate()
public java.lang.Object writeReplace() throws java.io.ObjectStreamException
java.io.ObjectStreamException
public int hashCode()
public boolean equals(java.lang.Object other)
protected java.lang.RuntimeException translate(java.lang.RuntimeException re)
public boolean isProviderOpen()
ResultList
isProviderOpen
in interface ResultList<T>
public java.lang.Object getUserObject()
ResultList
getUserObject
in interface ResultList<T>
public void setUserObject(java.lang.Object opaque)
ResultList
setUserObject
in interface ResultList<T>
public void close()
ResultList
close
in interface ResultList<T>
close
in interface Closeable
public boolean isClosed()
ResultList
isClosed
in interface ResultList<T>
public int size()
public boolean isEmpty()
public boolean contains(java.lang.Object o)
public java.util.Iterator<T> iterator()
public java.lang.Object[] toArray()
public java.lang.Object[] toArray(java.lang.Object[] a)
public boolean add(T o)
public boolean remove(java.lang.Object o)
public boolean containsAll(java.util.Collection<?> c)
public boolean addAll(java.util.Collection<? extends T> c)
public boolean addAll(int index, java.util.Collection<? extends T> c)
addAll
in interface java.util.List<T>
public boolean removeAll(java.util.Collection<?> c)
public boolean retainAll(java.util.Collection<?> c)
public void clear()
public int indexOf(java.lang.Object o)
indexOf
in interface java.util.List<T>
public int lastIndexOf(java.lang.Object o)
lastIndexOf
in interface java.util.List<T>
public java.util.ListIterator<T> listIterator()
listIterator
in interface java.util.List<T>
public java.util.ListIterator<T> listIterator(int index)
listIterator
in interface java.util.List<T>
public java.util.List<T> subList(int fromIndex, int toIndex)
subList
in interface java.util.List<T>
public java.lang.String toString()
toString
in class java.lang.Object
Copyright © 2006-2013 Apache Software Foundation. All Rights Reserved.