public enum NotificationPriority extends Enum<NotificationPriority> implements EnumValue<Integer>
Modifier and Type | Method and Description |
---|---|
Integer |
getValue() |
static NotificationPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationPriority normal
public static final NotificationPriority high
public static NotificationPriority[] values()
for (NotificationPriority c : NotificationPriority.values()) System.out.println(c);
public static NotificationPriority valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2014 Equilibrium. All rights reserved.