public static enum Stream.Visibility extends java.lang.Enum<Stream.Visibility>
| Enum Constant and Description |
|---|
INPUT
The stream can be subscribed from and published to
|
LOCAL
The stream cannot be subscribed from or published to
|
OUTPUT
The stream can be subscribed from
|
| Modifier and Type | Method and Description |
|---|---|
static Stream.Visibility |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Stream.Visibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stream.Visibility INPUT
public static final Stream.Visibility OUTPUT
public static final Stream.Visibility LOCAL
public static Stream.Visibility[] values()
for (Stream.Visibility c : Stream.Visibility.values()) System.out.println(c);
public static Stream.Visibility 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