public static enum Stream.StreamType extends java.lang.Enum<Stream.StreamType>
| Enum Constant and Description |
|---|
DELTA_STREAM
Stateless stream with no data retention and no key support
|
ERROR_STREAM
Special stream that holds error events
|
LEGACY
A legacy (source or derived) stream
|
SIMPLE_STREAM
Stateless stream with no data retention, but supports keys
|
SQL_QUERY
Virtual stream representing a SQL projection subscription
|
SYSTEM
System stream typically containing meta data about the model
|
WINDOW
Stateful, retains data based on retention policies
|
| Modifier and Type | Method and Description |
|---|---|
static Stream.StreamType |
parseString(java.lang.String type) |
static Stream.StreamType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Stream.StreamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stream.StreamType LEGACY
public static final Stream.StreamType SIMPLE_STREAM
public static final Stream.StreamType DELTA_STREAM
public static final Stream.StreamType ERROR_STREAM
public static final Stream.StreamType WINDOW
public static final Stream.StreamType SYSTEM
public static final Stream.StreamType SQL_QUERY
public static Stream.StreamType[] values()
for (Stream.StreamType c : Stream.StreamType.values()) System.out.println(c);
public static Stream.StreamType 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 nullpublic static Stream.StreamType parseString(java.lang.String type)