Enum RaidRoom
- java.lang.Object
-
- java.lang.Enum<RaidRoom>
-
- net.runelite.client.plugins.raids.RaidRoom
-
- All Implemented Interfaces:
Serializable
,Comparable<RaidRoom>
public enum RaidRoom extends Enum<RaidRoom>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CRABS
EMPTY
END
FARMING
GUARDIANS
ICE_DEMON
MUTTADILES
MYSTICS
SCAVENGERS
SHAMANS
START
TEKTON
THIEVING
TIGHTROPE
UNKNOWN_COMBAT
UNKNOWN_PUZZLE
VANGUARDS
VASA
VESPULA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
RoomType
getType()
static RaidRoom
valueOf(String name)
Returns the enum constant of this type with the specified name.static RaidRoom[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final RaidRoom START
-
END
public static final RaidRoom END
-
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 nameNullPointerException
- if the argument is null
-
getName
public String getName()
-
getType
public RoomType getType()
-
-