public static enum Window.OnTimeBehavior extends java.lang.Enum<Window.OnTimeBehavior>
| Enum Constant and Description | 
|---|
FIRE_ALWAYS
Always fire the on-time pane. 
 | 
FIRE_IF_NON_EMPTY
Only fire the on-time pane if there is new data since the previous firing. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Window.OnTimeBehavior | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Window.OnTimeBehavior[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Window.OnTimeBehavior FIRE_ALWAYS
This is the default behavior.
public static final Window.OnTimeBehavior FIRE_IF_NON_EMPTY
public static Window.OnTimeBehavior[] values()
for (Window.OnTimeBehavior c : Window.OnTimeBehavior.values()) System.out.println(c);
public static Window.OnTimeBehavior 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