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