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