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