public static enum Ability.Type extends Enum<Ability.Type>
| Modifier and Type | Method and Description |
|---|---|
static Ability.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ability.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ability.Type NONE
public static final Ability.Type BOOLEAN
public static final Ability.Type FLOAT
public static Ability.Type[] values()
for (Ability.Type c : Ability.Type.values()) System.out.println(c);
public static Ability.Type 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 © 2018–2022 CloudburstMC. All rights reserved.