Package net.runelite.client.config
Enum RuneScapeProfileType
- java.lang.Object
-
- java.lang.Enum<RuneScapeProfileType>
-
- net.runelite.client.config.RuneScapeProfileType
-
- All Implemented Interfaces:
Serializable
,Comparable<RuneScapeProfileType>
public enum RuneScapeProfileType extends Enum<RuneScapeProfileType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BETA
DEADMAN
DEADMAN_REBORN
PVP_ARENA
QUEST_SPEEDRUNNING
RAGING_ECHOES_LEAGUE
SHATTERED_RELICS_LEAGUE
STANDARD
TRAILBLAZER_LEAGUE
TRAILBLAZER_RELOADED_LEAGUE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RuneScapeProfileType
getCurrent(Client client)
Predicate<Client>
getTest()
static RuneScapeProfileType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RuneScapeProfileType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDARD
public static final RuneScapeProfileType STANDARD
-
BETA
public static final RuneScapeProfileType BETA
-
QUEST_SPEEDRUNNING
public static final RuneScapeProfileType QUEST_SPEEDRUNNING
-
DEADMAN
public static final RuneScapeProfileType DEADMAN
-
PVP_ARENA
public static final RuneScapeProfileType PVP_ARENA
-
TRAILBLAZER_LEAGUE
public static final RuneScapeProfileType TRAILBLAZER_LEAGUE
-
DEADMAN_REBORN
public static final RuneScapeProfileType DEADMAN_REBORN
-
SHATTERED_RELICS_LEAGUE
public static final RuneScapeProfileType SHATTERED_RELICS_LEAGUE
-
TRAILBLAZER_RELOADED_LEAGUE
public static final RuneScapeProfileType TRAILBLAZER_RELOADED_LEAGUE
-
RAGING_ECHOES_LEAGUE
public static final RuneScapeProfileType RAGING_ECHOES_LEAGUE
-
-
Method Detail
-
values
public static RuneScapeProfileType[] 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 (RuneScapeProfileType c : RuneScapeProfileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RuneScapeProfileType 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
-
getCurrent
public static RuneScapeProfileType getCurrent(Client client)
-
-