static enum Raid.Member extends Enum<Raid.Member>
Enum Constant and Description |
---|
EVOKER |
PILLAGER |
RAVAGER |
VINDICATOR |
WITCH |
Modifier and Type | Field and Description |
---|---|
private int[] |
countInWave |
private EntityType<? extends RaiderEntity> |
type |
private static Raid.Member[] |
VALUES |
Modifier and Type | Method and Description |
---|---|
static Raid.Member |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Raid.Member[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Raid.Member VINDICATOR
public static final Raid.Member EVOKER
public static final Raid.Member PILLAGER
public static final Raid.Member WITCH
public static final Raid.Member RAVAGER
private static final Raid.Member[] VALUES
private final EntityType<? extends RaiderEntity> type
private final int[] countInWave
public static Raid.Member[] values()
for (Raid.Member c : Raid.Member.values()) System.out.println(c);
public static Raid.Member 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 null