java.io.Serializable
, java.lang.Comparable<Quest.Spawn>
public static enum Quest.Spawn extends java.lang.Enum<Quest.Spawn>
Enum Constant | Description |
---|---|
ALL |
A quest spawn flag denoting that this quest attempts to spawn every step at the same time
|
ALLONCE |
A quest spawn flag denoting that this quest attempts to spawn every step, but only once
|
ANY |
A quest spawn flag denoting that this quest attempts to spawn one random step, once
|
ANYONCE |
A quest spawn flag denoting that this quest attempts to spawn one random step, once
|
FIRST |
A quest spawn flag denoting that this quest spawns only its first step
|
NO |
A quest spawn flag denoting that this quest does not spawn its steps
|
ONCE |
A quest spawn flag denoting that this quest spawns only its first step, once
|
TRUE |
A quest spawn flag denoting that this quest spawns only its first step
|
Modifier and Type | Method | Description |
---|---|---|
static Quest.Spawn |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Quest.Spawn[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Quest.Spawn NO
public static final Quest.Spawn TRUE
public static final Quest.Spawn FIRST
public static final Quest.Spawn ALL
public static final Quest.Spawn ONCE
public static final Quest.Spawn ALLONCE
public static final Quest.Spawn ANY
public static final Quest.Spawn ANYONCE
public static Quest.Spawn[] values()
for (Quest.Spawn c : Quest.Spawn.values()) System.out.println(c);
public static Quest.Spawn 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