public enum EnterCreditsValue extends Enum<EnterCreditsValue> implements ClientNotificationValue
| Enum Constant and Description |
|---|
FIRST_TIME |
SEEN_BEFORE |
| Modifier and Type | Method and Description |
|---|---|
static EnterCreditsValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnterCreditsValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnterCreditsValue SEEN_BEFORE
public static final EnterCreditsValue FIRST_TIME
public static EnterCreditsValue[] values()
for (EnterCreditsValue c : EnterCreditsValue.values()) System.out.println(c);
public static EnterCreditsValue 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 © 2020. All rights reserved.