Enum Minigame

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Minigame>

    public enum Minigame
    extends java.lang.Enum<Minigame>
    • Enum Constant Detail

      • BARBARIAN_ASSAULT

        public static final Minigame BARBARIAN_ASSAULT
      • BLAST_FURNACE

        public static final Minigame BLAST_FURNACE
      • BURTHORPE_GAMES_ROOM

        public static final Minigame BURTHORPE_GAMES_ROOM
      • CASTLE_WARS

        public static final Minigame CASTLE_WARS
      • CLAN_WARS

        public static final Minigame CLAN_WARS
      • DAGANNOTH_KINGS

        public static final Minigame DAGANNOTH_KINGS
      • FISHING_TRAWLER

        public static final Minigame FISHING_TRAWLER
      • GIANTS_FOUNDRY

        public static final Minigame GIANTS_FOUNDRY
      • GOD_WARS

        public static final Minigame GOD_WARS
      • GUARDIANS_OF_THE_RIFT

        public static final Minigame GUARDIANS_OF_THE_RIFT
      • LAST_MAN_STANDING

        public static final Minigame LAST_MAN_STANDING
      • NIGHTMARE_ZONE

        public static final Minigame NIGHTMARE_ZONE
      • PEST_CONTROL

        public static final Minigame PEST_CONTROL
      • PLAYER_OWNED_HOUSES

        public static final Minigame PLAYER_OWNED_HOUSES
      • RAT_PITS

        public static final Minigame RAT_PITS
      • SHADES_OF_MORTTON

        public static final Minigame SHADES_OF_MORTTON
      • SHIELD_OF_ARRAV

        public static final Minigame SHIELD_OF_ARRAV
      • SHOOTING_STARS

        public static final Minigame SHOOTING_STARS
      • SOUL_WARS

        public static final Minigame SOUL_WARS
      • THEATRE_OF_BLOOD

        public static final Minigame THEATRE_OF_BLOOD
      • TITHE_FARM

        public static final Minigame TITHE_FARM
      • TOMBS_OF_AMASCUT

        public static final Minigame TOMBS_OF_AMASCUT
      • TROUBLE_BREWING

        public static final Minigame TROUBLE_BREWING
      • TZHAAR_FIGHT_PIT

        public static final Minigame TZHAAR_FIGHT_PIT
      • VOLCANIC_MINE

        public static final Minigame VOLCANIC_MINE
    • Method Detail

      • values

        public static Minigame[] 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 (Minigame c : Minigame.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Minigame valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null