public enum GroupSearchTag extends java.lang.Enum<GroupSearchTag> implements BetterEnum<java.lang.Integer>
Enum Constant and Description |
---|
AZUBU |
CASUAL |
COMPETITIVE |
GUILD |
HARDCORE |
LFM |
TWITCH |
YOUTUBE |
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
getValue() |
static GroupSearchTag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupSearchTag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupSearchTag CASUAL
public static final GroupSearchTag HARDCORE
public static final GroupSearchTag COMPETITIVE
public static final GroupSearchTag LFM
public static final GroupSearchTag TWITCH
public static final GroupSearchTag YOUTUBE
public static final GroupSearchTag GUILD
public static final GroupSearchTag AZUBU
public static GroupSearchTag[] values()
for (GroupSearchTag c : GroupSearchTag.values()) System.out.println(c);
public static GroupSearchTag 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 null@Nonnull public java.lang.Integer getValue()
getValue
in interface BetterEnum<java.lang.Integer>