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