|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ChainableList<E>
List
sub interface that makes it possible to 'chain' actions
Method Summary | |
---|---|
boolean |
add(E e)
Deprecated. |
void |
add(int index,
E element)
Deprecated. |
boolean |
addAll(Collection<? extends E> c)
Deprecated. |
boolean |
addAll(int index,
Collection<? extends E> c)
Deprecated. |
void |
clear()
Deprecated. |
ChainableList<E> |
delete(int index)
|
ChainableList<E> |
delete(Object o)
|
ChainableList<E> |
deleteAll(Collection<?> c)
|
ChainableList<E> |
empty()
|
ChainableList<E> |
keepAll(Collection<?> c)
|
ChainableList<E> |
put(E element)
|
ChainableList<E> |
put(int index,
E element)
|
ChainableList<E> |
putAll(Collection<? extends E> c)
|
ChainableList<E> |
putAll(int index,
Collection<? extends E> c)
|
E |
remove(int index)
Deprecated. |
boolean |
remove(Object o)
Deprecated. |
boolean |
removeAll(Collection<?> c)
Deprecated. |
ChainableList<E> |
replace(int index,
E element)
|
boolean |
retainAll(Collection<?> c)
Deprecated. |
E |
set(int index,
E element)
Deprecated. |
Methods inherited from interface java.util.List |
---|
contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, size, subList, toArray, toArray |
Method Detail |
---|
ChainableList<E> delete(int index)
index
-
List.remove(int)
ChainableList<E> delete(Object o)
o
-
List.remove(Object)
ChainableList<E> deleteAll(Collection<?> c)
c
-
List.removeAll(Collection)
ChainableList<E> empty()
List.clear()
ChainableList<E> keepAll(Collection<?> c)
c
-
List.retainAll(Collection)
ChainableList<E> put(E element)
element
-
List.add(Object)
ChainableList<E> put(int index, E element)
index
- element
-
List.add(int, Object)
ChainableList<E> putAll(Collection<? extends E> c)
c
-
List.addAll(Collection)
ChainableList<E> putAll(int index, Collection<? extends E> c)
index
- c
-
List.addAll(int, Collection)
ChainableList<E> replace(int index, E element)
index
- element
-
List.set(int, Object)
@Deprecated boolean add(E e)
add
in interface Collection<E>
add
in interface List<E>
put(Object)
@Deprecated void add(int index, E element)
add
in interface List<E>
put(int, Object)
@Deprecated boolean addAll(Collection<? extends E> c)
addAll
in interface Collection<E>
addAll
in interface List<E>
putAll(Collection)
@Deprecated boolean addAll(int index, Collection<? extends E> c)
addAll
in interface List<E>
putAll(int, Collection)
@Deprecated void clear()
clear
in interface Collection<E>
clear
in interface List<E>
empty()
@Deprecated E remove(int index)
remove
in interface List<E>
delete(int)
@Deprecated boolean remove(Object o)
remove
in interface Collection<E>
remove
in interface List<E>
delete(Object)
@Deprecated boolean removeAll(Collection<?> c)
removeAll
in interface Collection<E>
removeAll
in interface List<E>
deleteAll(Collection)
@Deprecated boolean retainAll(Collection<?> c)
retainAll
in interface Collection<E>
retainAll
in interface List<E>
keepAll(Collection)
@Deprecated E set(int index, E element)
set
in interface List<E>
replace(int, Object)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |