public enum AccumulationMode extends java.lang.Enum<AccumulationMode>
Window should process its previously emitted WindowPanes.
  There are two types of AccumulationModes:
 
| Enum Constant and Description | 
|---|
| ACCUMULATING | 
| DISCARDING | 
| Modifier and Type | Method and Description | 
|---|---|
| static AccumulationMode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static AccumulationMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AccumulationMode ACCUMULATING
public static final AccumulationMode DISCARDING
public static AccumulationMode[] values()
for (AccumulationMode c : AccumulationMode.values()) System.out.println(c);
public static 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