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