public static enum WindowingStrategy.AccumulationMode extends java.lang.Enum<WindowingStrategy.AccumulationMode>
| Enum Constant and Description | 
|---|
| ACCUMULATING_FIRED_PANES | 
| DISCARDING_FIRED_PANES | 
| RETRACTING_FIRED_PANES | 
| Modifier and Type | Method and Description | 
|---|---|
| static WindowingStrategy.AccumulationMode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static WindowingStrategy.AccumulationMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final WindowingStrategy.AccumulationMode DISCARDING_FIRED_PANES
public static final WindowingStrategy.AccumulationMode ACCUMULATING_FIRED_PANES
public static final WindowingStrategy.AccumulationMode RETRACTING_FIRED_PANES
public static WindowingStrategy.AccumulationMode[] values()
for (WindowingStrategy.AccumulationMode c : WindowingStrategy.AccumulationMode.values()) System.out.println(c);
public static WindowingStrategy.AccumulationMode 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