org.neodatis.tool.wrappers.list
Interface IOdbList<E>

Type Parameters:
E -
All Superinterfaces:
java.util.Collection<E>, java.lang.Iterable<E>, java.util.List<E>
All Known Implementing Classes:
LazySimpleListFromOid, LazySimpleListOfAOI, OdbArrayList

public interface IOdbList<E>
extends java.util.List<E>

Author:
olivier

Method Summary
 boolean add(E o)
           
 boolean addAll(java.util.Collection<? extends E> c)
           
 E get(int index)
           
 boolean isEmpty()
           
 boolean removeAll(java.util.Collection<?> c)
           
 E set(int index, E o)
           
 
Methods inherited from interface java.util.List
add, addAll, clear, contains, containsAll, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, remove, retainAll, size, subList, toArray, toArray
 

Method Detail

addAll

boolean addAll(java.util.Collection<? extends E> c)
Specified by:
addAll in interface java.util.Collection<E>
Specified by:
addAll in interface java.util.List<E>

removeAll

boolean removeAll(java.util.Collection<?> c)
Specified by:
removeAll in interface java.util.Collection<E>
Specified by:
removeAll in interface java.util.List<E>

add

boolean add(E o)
Specified by:
add in interface java.util.Collection<E>
Specified by:
add in interface java.util.List<E>

get

E get(int index)
Specified by:
get in interface java.util.List<E>

set

E set(int index,
      E o)
Specified by:
set in interface java.util.List<E>

isEmpty

boolean isEmpty()
Specified by:
isEmpty in interface java.util.Collection<E>
Specified by:
isEmpty in interface java.util.List<E>