Enum Constant and Description |
---|
CAMPAIGN1
The primary slot for campaign quests.
|
CAMPAIGN2
The secondary slot for campaign quests.
|
DAILY1
The first slot for repeatable quests.
|
DAILY2
The second slot for repeatable quests.
|
DAILY3
The third slot for repeatable quests.
|
MAIN
The slot for the main quest.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
configKey
The name of the key in the config files.
|
private java.lang.String |
questType
The type of the quest slot.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getConfigKey() |
java.lang.String |
getQuestType() |
static QuestSlot |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QuestSlot[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuestSlot MAIN
public static final QuestSlot CAMPAIGN1
public static final QuestSlot CAMPAIGN2
public static final QuestSlot DAILY1
public static final QuestSlot DAILY2
public static final QuestSlot DAILY3
private final java.lang.String questType
private final java.lang.String configKey
public static QuestSlot[] values()
for (QuestSlot c : QuestSlot.values()) System.out.println(c);
public static QuestSlot 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 nullpublic java.lang.String getQuestType()
public java.lang.String getConfigKey()