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