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