Enum BarsOres
- java.lang.Object
-
- java.lang.Enum<BarsOres>
-
- net.runelite.client.plugins.blastfurnace.BarsOres
-
- All Implemented Interfaces:
Serializable
,Comparable<BarsOres>
public enum BarsOres extends Enum<BarsOres>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADAMANTITE_BAR
ADAMANTITE_ORE
BRONZE_BAR
COAL
COPPER_ORE
GOLD_BAR
GOLD_ORE
IRON_BAR
IRON_ORE
MITHRIL_BAR
MITHRIL_ORE
RUNITE_BAR
RUNITE_ORE
SILVER_BAR
SILVER_ORE
STEEL_BAR
TIN_ORE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getItemID()
net.runelite.api.Varbits
getVarbit()
static BarsOres
getVarbit(net.runelite.api.Varbits varbit)
static BarsOres
valueOf(String name)
Returns the enum constant of this type with the specified name.static BarsOres[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COPPER_ORE
public static final BarsOres COPPER_ORE
-
TIN_ORE
public static final BarsOres TIN_ORE
-
IRON_ORE
public static final BarsOres IRON_ORE
-
COAL
public static final BarsOres COAL
-
MITHRIL_ORE
public static final BarsOres MITHRIL_ORE
-
ADAMANTITE_ORE
public static final BarsOres ADAMANTITE_ORE
-
RUNITE_ORE
public static final BarsOres RUNITE_ORE
-
SILVER_ORE
public static final BarsOres SILVER_ORE
-
GOLD_ORE
public static final BarsOres GOLD_ORE
-
BRONZE_BAR
public static final BarsOres BRONZE_BAR
-
IRON_BAR
public static final BarsOres IRON_BAR
-
STEEL_BAR
public static final BarsOres STEEL_BAR
-
MITHRIL_BAR
public static final BarsOres MITHRIL_BAR
-
ADAMANTITE_BAR
public static final BarsOres ADAMANTITE_BAR
-
RUNITE_BAR
public static final BarsOres RUNITE_BAR
-
SILVER_BAR
public static final BarsOres SILVER_BAR
-
GOLD_BAR
public static final BarsOres GOLD_BAR
-
-
Method Detail
-
values
public static BarsOres[] 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 (BarsOres c : BarsOres.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BarsOres 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
-
getVarbit
public static BarsOres getVarbit(net.runelite.api.Varbits varbit)
-
getVarbit
public net.runelite.api.Varbits getVarbit()
-
getItemID
public int getItemID()
-
-