public final class Filters
extends java.lang.Object
EventFilter instances| Modifier and Type | Method and Description |
|---|---|
static EventFilter |
all(EventFilter... filters)
A filter that matches if and only if all of the filters passed to this
method matches.
|
static EventFilter |
all(java.util.List<EventFilter> filters)
A filter that matches if and only if all of the filters passed to this
method matches.
|
static EventFilter |
any(EventFilter... filters)
A filter that matches if and only if any of the filters passed to this
method matches.
|
static EventFilter |
any(java.util.List<EventFilter> filters)
A filter that matches if and only if any of the filters passed to this
method matches.
|
static EventFilter |
excludeAll() |
static EventFilter |
includeAll() |
static EventFilter |
not(EventFilter filter)
A filter that matches if and only if any the filter passed to this
method does not match.
|
public static EventFilter not(EventFilter filter)
filter - filter which must not matchtrue if filter does not match.public static EventFilter any(EventFilter... filters)
filters - filters of which any must matchtrue if any of filters match.public static EventFilter all(EventFilter... filters)
filters - filters of which all must matchtrue if all of filters match.public static EventFilter includeAll()
public static EventFilter excludeAll()
public static EventFilter any(java.util.List<EventFilter> filters)
filters - filters of which any must matchtrue if any of filters match.public static EventFilter all(java.util.List<EventFilter> filters)
filters - filters of which all must matchtrue if all of filters match."Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"