public static enum PaneInfo.Timing extends Enum<PaneInfo.Timing>
| Enum Constant and Description |
|---|
EARLY
Pane was fired before the watermark passed the end of the window.
|
LATE
Panes fired after the
ON_TIME firing. |
ON_TIME
First pane fired after the watermark passed the end of the window.
|
UNKNOWN
This element was not produced in a triggered pane and its relation to the watermark is
unknown.
|
| Modifier and Type | Method and Description |
|---|---|
static PaneInfo.Timing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaneInfo.Timing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaneInfo.Timing EARLY
public static final PaneInfo.Timing ON_TIME
public static final PaneInfo.Timing LATE
ON_TIME firing.public static final PaneInfo.Timing UNKNOWN
public static PaneInfo.Timing[] values()
for (PaneInfo.Timing c : PaneInfo.Timing.values()) System.out.println(c);
public static PaneInfo.Timing valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null