Enum MenuEntrySwapperConfig.RadasBlessingMode
- java.lang.Object
-
- java.lang.Enum<MenuEntrySwapperConfig.RadasBlessingMode>
-
- net.runelite.client.plugins.menuentryswapper.MenuEntrySwapperConfig.RadasBlessingMode
-
- All Implemented Interfaces:
Serializable
,Comparable<MenuEntrySwapperConfig.RadasBlessingMode>
- Enclosing interface:
- MenuEntrySwapperConfig
public static enum MenuEntrySwapperConfig.RadasBlessingMode extends Enum<MenuEntrySwapperConfig.RadasBlessingMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUIP
KOUREND_WOODLAND
MOUNT_KARUULM
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MenuEntrySwapperConfig.RadasBlessingMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static MenuEntrySwapperConfig.RadasBlessingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUIP
public static final MenuEntrySwapperConfig.RadasBlessingMode EQUIP
-
KOUREND_WOODLAND
public static final MenuEntrySwapperConfig.RadasBlessingMode KOUREND_WOODLAND
-
MOUNT_KARUULM
public static final MenuEntrySwapperConfig.RadasBlessingMode MOUNT_KARUULM
-
-
Method Detail
-
values
public static MenuEntrySwapperConfig.RadasBlessingMode[] 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 (MenuEntrySwapperConfig.RadasBlessingMode c : MenuEntrySwapperConfig.RadasBlessingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MenuEntrySwapperConfig.RadasBlessingMode 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
-
-