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