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