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