public enum ChampData extends Enum<ChampData>
| Enum Constant and Description |
|---|
ALL |
ALLY_TIPS |
ALTIMAGES |
BLURB |
ENEMY_TIPS |
IMAGE |
INFO |
LORE |
PARTYPE |
PASSIVE |
RECOMMENDED |
SKINS |
SPELLS |
STATS |
TAGS |
| Modifier and Type | Method and Description |
|---|---|
static ChampData |
getByName(String name) |
static ChampData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChampData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChampData ALL
public static final ChampData ALLY_TIPS
public static final ChampData ALTIMAGES
public static final ChampData BLURB
public static final ChampData ENEMY_TIPS
public static final ChampData IMAGE
public static final ChampData INFO
public static final ChampData LORE
public static final ChampData PARTYPE
public static final ChampData PASSIVE
public static final ChampData RECOMMENDED
public static final ChampData SKINS
public static final ChampData SPELLS
public static final ChampData STATS
public static final ChampData TAGS
public final String name
public static ChampData[] values()
for (ChampData c : ChampData.values()) System.out.println(c);
public static ChampData 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 © 2015. All rights reserved.