Enum PatchImplementation
- java.lang.Object
-
- java.lang.Enum<PatchImplementation>
-
- net.runelite.client.plugins.timetracking.farming.PatchImplementation
-
- All Implemented Interfaces:
Serializable
,Comparable<PatchImplementation>
public enum PatchImplementation extends Enum<PatchImplementation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLOTMENT
ANIMA
BELLADONNA
BIG_COMPOST
BUSH
CACTUS
CALQUAT
CELASTRUS
COMPOST
CRYSTAL_TREE
FLOWER
FRUIT_TREE
GRAPES
HARDWOOD_TREE
HERB
HESPORI
HOPS
MUSHROOM
REDWOOD
SEAWEED
SPIRIT_TREE
TREE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Tab
getTab()
boolean
isHealthCheckRequired()
static PatchImplementation
valueOf(String name)
Returns the enum constant of this type with the specified name.static PatchImplementation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BELLADONNA
public static final PatchImplementation BELLADONNA
-
MUSHROOM
public static final PatchImplementation MUSHROOM
-
HESPORI
public static final PatchImplementation HESPORI
-
ALLOTMENT
public static final PatchImplementation ALLOTMENT
-
HERB
public static final PatchImplementation HERB
-
FLOWER
public static final PatchImplementation FLOWER
-
BUSH
public static final PatchImplementation BUSH
-
FRUIT_TREE
public static final PatchImplementation FRUIT_TREE
-
HOPS
public static final PatchImplementation HOPS
-
TREE
public static final PatchImplementation TREE
-
HARDWOOD_TREE
public static final PatchImplementation HARDWOOD_TREE
-
REDWOOD
public static final PatchImplementation REDWOOD
-
SPIRIT_TREE
public static final PatchImplementation SPIRIT_TREE
-
ANIMA
public static final PatchImplementation ANIMA
-
CACTUS
public static final PatchImplementation CACTUS
-
SEAWEED
public static final PatchImplementation SEAWEED
-
CALQUAT
public static final PatchImplementation CALQUAT
-
CELASTRUS
public static final PatchImplementation CELASTRUS
-
GRAPES
public static final PatchImplementation GRAPES
-
CRYSTAL_TREE
public static final PatchImplementation CRYSTAL_TREE
-
COMPOST
public static final PatchImplementation COMPOST
-
BIG_COMPOST
public static final PatchImplementation BIG_COMPOST
-
-
Method Detail
-
values
public static PatchImplementation[] 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 (PatchImplementation c : PatchImplementation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PatchImplementation 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
-
getTab
public Tab getTab()
-
getName
public String getName()
-
isHealthCheckRequired
public boolean isHealthCheckRequired()
-
-