public enum BadgeType extends Enum<BadgeType>
| Enum Constant and Description |
|---|
activity |
alert |
attention |
available |
away |
busy |
error |
newMessage |
none |
paused |
playing |
unavailable |
| Modifier and Type | Method and Description |
|---|---|
static BadgeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BadgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BadgeType none
public static final BadgeType activity
public static final BadgeType alert
public static final BadgeType available
public static final BadgeType away
public static final BadgeType busy
public static final BadgeType newMessage
public static final BadgeType paused
public static final BadgeType playing
public static final BadgeType unavailable
public static final BadgeType error
public static final BadgeType attention
public static BadgeType[] values()
for (BadgeType c : BadgeType.values()) System.out.println(c);
public static BadgeType 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 © 2016 JBoss by Red Hat. All Rights Reserved.