Enum LoginScreenOverride
- java.lang.Object
-
- java.lang.Enum<LoginScreenOverride>
-
- net.runelite.client.plugins.loginscreen.LoginScreenOverride
-
- All Implemented Interfaces:
Serializable
,Comparable<LoginScreenOverride>
public enum LoginScreenOverride extends Enum<LoginScreenOverride>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description A_KINGDOM_DIVIDED
CHAMBERS_OF_XERIC
CHRISTMAS
CUSTOM
DARKMEYER
DRAGON_SLAYER_2
FOSSIL_ISLAND
HALLOWEEN
HALLOWEEN_2019
INFERNO
KEBOS
MONKEY_MADNESS_2
NEX
NORMAL
OFF
OLD
PRIFDDINAS
RANDOM
THEATRE_OF_BLOOD
TOMBS_OF_AMASCUT
VARLAMORE
VARLAMORE_2
WHILE_GUTHIX_SLEEPS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFileName()
static LoginScreenOverride
valueOf(String name)
Returns the enum constant of this type with the specified name.static LoginScreenOverride[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFF
public static final LoginScreenOverride OFF
-
NORMAL
public static final LoginScreenOverride NORMAL
-
OLD
public static final LoginScreenOverride OLD
-
CHRISTMAS
public static final LoginScreenOverride CHRISTMAS
-
CHAMBERS_OF_XERIC
public static final LoginScreenOverride CHAMBERS_OF_XERIC
-
DARKMEYER
public static final LoginScreenOverride DARKMEYER
-
DRAGON_SLAYER_2
public static final LoginScreenOverride DRAGON_SLAYER_2
-
FOSSIL_ISLAND
public static final LoginScreenOverride FOSSIL_ISLAND
-
HALLOWEEN
public static final LoginScreenOverride HALLOWEEN
-
HALLOWEEN_2019
public static final LoginScreenOverride HALLOWEEN_2019
-
INFERNO
public static final LoginScreenOverride INFERNO
-
KEBOS
public static final LoginScreenOverride KEBOS
-
MONKEY_MADNESS_2
public static final LoginScreenOverride MONKEY_MADNESS_2
-
PRIFDDINAS
public static final LoginScreenOverride PRIFDDINAS
-
THEATRE_OF_BLOOD
public static final LoginScreenOverride THEATRE_OF_BLOOD
-
A_KINGDOM_DIVIDED
public static final LoginScreenOverride A_KINGDOM_DIVIDED
-
NEX
public static final LoginScreenOverride NEX
-
TOMBS_OF_AMASCUT
public static final LoginScreenOverride TOMBS_OF_AMASCUT
-
VARLAMORE
public static final LoginScreenOverride VARLAMORE
-
VARLAMORE_2
public static final LoginScreenOverride VARLAMORE_2
-
WHILE_GUTHIX_SLEEPS
public static final LoginScreenOverride WHILE_GUTHIX_SLEEPS
-
CUSTOM
public static final LoginScreenOverride CUSTOM
-
RANDOM
public static final LoginScreenOverride RANDOM
-
-
Method Detail
-
values
public static LoginScreenOverride[] 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 (LoginScreenOverride c : LoginScreenOverride.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoginScreenOverride 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
-
getFileName
public String getFileName()
-
-