public static enum BannerSprites.Type extends java.lang.Enum<BannerSprites.Type>
| Enum Constant and Description |
|---|
BOSS_SLAIN |
GAME_OVER |
PIXEL_DUNGEON |
SELECT_YOUR_HERO |
| Modifier and Type | Method and Description |
|---|---|
static BannerSprites.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BannerSprites.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BannerSprites.Type PIXEL_DUNGEON
public static final BannerSprites.Type BOSS_SLAIN
public static final BannerSprites.Type GAME_OVER
public static final BannerSprites.Type SELECT_YOUR_HERO
public static BannerSprites.Type[] values()
for (BannerSprites.Type c : BannerSprites.Type.values()) System.out.println(c);
public static BannerSprites.Type 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