public static enum IChannel.ChannelType extends Enum<IChannel.ChannelType>
| Enum Constant and Description |
|---|
STATE
A Single Object .
|
STREAM
Stream to consume.
|
TAG
A Collection of tags.
|
| Modifier and Type | Method and Description |
|---|---|
static IChannel.ChannelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IChannel.ChannelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IChannel.ChannelType STREAM
public static final IChannel.ChannelType TAG
public static final IChannel.ChannelType STATE
public static IChannel.ChannelType[] values()
for (IChannel.ChannelType c : IChannel.ChannelType.values()) System.out.println(c);
public static IChannel.ChannelType 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 nullCopyright © 2020. All rights reserved.