public enum StreamSelector extends Enum<StreamSelector>
Enum Constant and Description |
---|
ISTREAM_ONLY
Indicates selection of the insert stream only.
|
RSTREAM_ISTREAM_BOTH
Indicates selection of both the insert and the remove stream.
|
RSTREAM_ONLY
Indicates selection of the remove stream only.
|
Modifier and Type | Method and Description |
---|---|
String |
getEpl()
Returns syntactic text
|
static StreamSelector |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamSelector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamSelector RSTREAM_ONLY
public static final StreamSelector ISTREAM_ONLY
public static final StreamSelector RSTREAM_ISTREAM_BOTH
public static StreamSelector[] values()
for (StreamSelector c : StreamSelector.values()) System.out.println(c);
public static StreamSelector valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getEpl()