public enum EnumBadgeCase extends java.lang.Enum<EnumBadgeCase>
Enum Constant and Description |
---|
Black |
Blue |
Green |
Pink |
Red |
White |
Yellow |
Modifier and Type | Method and Description |
---|---|
static EnumBadgeCase |
fromIndex(int index) |
static EnumBadgeCase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumBadgeCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumBadgeCase Black
public static final EnumBadgeCase White
public static final EnumBadgeCase Pink
public static final EnumBadgeCase Green
public static final EnumBadgeCase Blue
public static final EnumBadgeCase Yellow
public static final EnumBadgeCase Red
public static EnumBadgeCase[] values()
for (EnumBadgeCase c : EnumBadgeCase.values()) System.out.println(c);
public static EnumBadgeCase 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 EnumBadgeCase fromIndex(int index)