public static enum ComponentEventSource.Predicate extends java.lang.Enum<ComponentEventSource.Predicate> implements rx.functions.Func1<java.awt.event.ComponentEvent,java.lang.Boolean>
| Modifier and Type | Method and Description |
|---|---|
java.lang.Boolean |
call(java.awt.event.ComponentEvent event) |
static ComponentEventSource.Predicate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComponentEventSource.Predicate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentEventSource.Predicate RESIZED
public static final ComponentEventSource.Predicate HIDDEN
public static final ComponentEventSource.Predicate MOVED
public static final ComponentEventSource.Predicate SHOWN
public static ComponentEventSource.Predicate[] values()
for (ComponentEventSource.Predicate c : ComponentEventSource.Predicate.values()) System.out.println(c);
public static ComponentEventSource.Predicate valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.Boolean call(java.awt.event.ComponentEvent event)
call in interface rx.functions.Func1<java.awt.event.ComponentEvent,java.lang.Boolean>