public static enum Trigger.WindowStatus extends java.lang.Enum<Trigger.WindowStatus>
WindowStatus indicates the status of the window that an element is being processed in.| Enum Constant and Description |
|---|
EXISTING
This element was added to a pane that was already being managed.
|
NEW
The arrival of this element started a new pane.
|
UNKNOWN
The window set doesn’t track the windows being managed, so it is not known whether the pane
is new.
|
| Modifier and Type | Method and Description |
|---|---|
static Trigger.WindowStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Trigger.WindowStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trigger.WindowStatus NEW
public static final Trigger.WindowStatus EXISTING
public static final Trigger.WindowStatus UNKNOWN
public static Trigger.WindowStatus[] values()
for (Trigger.WindowStatus c : Trigger.WindowStatus.values()) System.out.println(c);
public static Trigger.WindowStatus 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 null