Enum Class ParentQuestState

java.lang.Object
java.lang.Enum<ParentQuestState>
emu.grasscutter.game.quest.enums.ParentQuestState
All Implemented Interfaces:
Serializable, Comparable<ParentQuestState>, Constable

public enum ParentQuestState extends Enum<ParentQuestState>
  • Enum Constant Details

    • PARENT_QUEST_STATE_NONE

      public static final ParentQuestState PARENT_QUEST_STATE_NONE
    • PARENT_QUEST_STATE_FINISHED

      public static final ParentQuestState PARENT_QUEST_STATE_FINISHED
    • PARENT_QUEST_STATE_FAILED

      public static final ParentQuestState PARENT_QUEST_STATE_FAILED
    • PARENT_QUEST_STATE_CANCELED

      public static final ParentQuestState PARENT_QUEST_STATE_CANCELED
  • Method Details

    • values

      public static ParentQuestState[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ParentQuestState valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()