public abstract class ListFacadeFilterChain extends AbstractFilterChain
FilterChain facade, which implements all the List related
methods.FilterChain| Modifier and Type | Field and Description |
|---|---|
protected java.util.List<Filter> |
filters
The list of Filters this chain will invoke.
|
interestedIoEventsMask| Constructor and Description |
|---|
ListFacadeFilterChain(java.util.List<Filter> filtersImpl) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(Filter filter) |
void |
add(int index,
Filter filter) |
boolean |
addAll(java.util.Collection<? extends Filter> c) |
boolean |
addAll(int index,
java.util.Collection<? extends Filter> c) |
void |
clear() |
boolean |
contains(java.lang.Object filter) |
boolean |
containsAll(java.util.Collection<?> c) |
Filter |
get(int index) |
int |
indexOf(java.lang.Object object) |
boolean |
isEmpty() |
java.util.Iterator<Filter> |
iterator() |
int |
lastIndexOf(java.lang.Object filter) |
java.util.ListIterator<Filter> |
listIterator() |
java.util.ListIterator<Filter> |
listIterator(int index) |
protected void |
notifyChangedExcept(Filter filter) |
Filter |
remove(int index) |
boolean |
remove(java.lang.Object object) |
boolean |
removeAll(java.util.Collection<?> c) |
boolean |
retainAll(java.util.Collection<?> c) |
Filter |
set(int index,
Filter filter) |
int |
size() |
java.lang.Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
finalize, indexOfType, isInterested, obtainContext, obtainFilterChainContext, obtainFilterChainContext, setInterestedclone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitexecute, fail, fireEventDownstream, fireEventUpstream, flush, readprotected final java.util.List<Filter> filters
public ListFacadeFilterChain(java.util.List<Filter> filtersImpl)
public boolean add(Filter filter)
public void add(int index,
Filter filter)
public boolean addAll(java.util.Collection<? extends Filter> c)
public boolean addAll(int index,
java.util.Collection<? extends Filter> c)
public final Filter get(int index)
public int indexOf(java.lang.Object object)
public int lastIndexOf(java.lang.Object filter)
public boolean contains(java.lang.Object filter)
public boolean containsAll(java.util.Collection<?> c)
public java.lang.Object[] toArray()
public <T> T[] toArray(T[] a)
public boolean retainAll(java.util.Collection<?> c)
public boolean remove(java.lang.Object object)
public Filter remove(int index)
public boolean removeAll(java.util.Collection<?> c)
public boolean isEmpty()
public int size()
public void clear()
public java.util.Iterator<Filter> iterator()
public java.util.ListIterator<Filter> listIterator()
public java.util.ListIterator<Filter> listIterator(int index)
protected void notifyChangedExcept(Filter filter)
Copyright © 2013 Oracle Corporation. All Rights Reserved.