public enum ChampData extends Enum<ChampData>
| Enum Constant and Description |
|---|
all |
allytips |
blurb |
enemytips |
image |
info |
lore |
partype |
passive |
recommended |
skins |
stats |
tags |
| Modifier and Type | Method and Description |
|---|---|
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 image
public static final ChampData skins
public static final ChampData lore
public static final ChampData blurb
public static final ChampData allytips
public static final ChampData enemytips
public static final ChampData tags
public static final ChampData partype
public static final ChampData info
public static final ChampData stats
public static final ChampData passive
public static final ChampData recommended
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 © 2014. All rights reserved.