Enum RaidRoom

    • Enum Constant Detail

      • START

        public static final RaidRoom START
      • SCAVENGERS

        public static final RaidRoom SCAVENGERS
      • FARMING

        public static final RaidRoom FARMING
      • EMPTY

        public static final RaidRoom EMPTY
      • TEKTON

        public static final RaidRoom TEKTON
      • MUTTADILES

        public static final RaidRoom MUTTADILES
      • GUARDIANS

        public static final RaidRoom GUARDIANS
      • VESPULA

        public static final RaidRoom VESPULA
      • SHAMANS

        public static final RaidRoom SHAMANS
      • VASA

        public static final RaidRoom VASA
      • VANGUARDS

        public static final RaidRoom VANGUARDS
      • MYSTICS

        public static final RaidRoom MYSTICS
      • UNKNOWN_COMBAT

        public static final RaidRoom UNKNOWN_COMBAT
      • CRABS

        public static final RaidRoom CRABS
      • ICE_DEMON

        public static final RaidRoom ICE_DEMON
      • TIGHTROPE

        public static final RaidRoom TIGHTROPE
      • THIEVING

        public static final RaidRoom THIEVING
      • UNKNOWN_PUZZLE

        public static final RaidRoom UNKNOWN_PUZZLE
    • Method Detail

      • values

        public static RaidRoom[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (RaidRoom c : RaidRoom.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RaidRoom valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null
      • getName

        public String getName()