Enum Produce
- java.lang.Object
-
- java.lang.Enum<Produce>
-
- net.runelite.client.plugins.timetracking.farming.Produce
-
- All Implemented Interfaces:
Serializable
,Comparable<Produce>
public enum Produce extends Enum<Produce>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContractName()
Farming contract namesint
getHarvestStages()
How many states this crop has during harvest.int
getItemID()
User-visible item iconString
getName()
User-visible namePatchImplementation
getPatchImplementation()
Patch type for the cropint
getRegrowTickrate()
How many minutes to regrow crops, or zero if it doesn't regrowint
getStages()
How many states this crop has during growth.int
getTickrate()
How many minutes per growth tickstatic Produce
valueOf(String name)
Returns the enum constant of this type with the specified name.static Produce[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WEEDS
public static final Produce WEEDS
-
SCARECROW
public static final Produce SCARECROW
-
POTATO
public static final Produce POTATO
-
ONION
public static final Produce ONION
-
CABBAGE
public static final Produce CABBAGE
-
TOMATO
public static final Produce TOMATO
-
SWEETCORN
public static final Produce SWEETCORN
-
STRAWBERRY
public static final Produce STRAWBERRY
-
WATERMELON
public static final Produce WATERMELON
-
SNAPE_GRASS
public static final Produce SNAPE_GRASS
-
MARIGOLD
public static final Produce MARIGOLD
-
ROSEMARY
public static final Produce ROSEMARY
-
NASTURTIUM
public static final Produce NASTURTIUM
-
WOAD
public static final Produce WOAD
-
LIMPWURT
public static final Produce LIMPWURT
-
WHITE_LILY
public static final Produce WHITE_LILY
-
REDBERRIES
public static final Produce REDBERRIES
-
CADAVABERRIES
public static final Produce CADAVABERRIES
-
DWELLBERRIES
public static final Produce DWELLBERRIES
-
JANGERBERRIES
public static final Produce JANGERBERRIES
-
WHITEBERRIES
public static final Produce WHITEBERRIES
-
POISON_IVY
public static final Produce POISON_IVY
-
BARLEY
public static final Produce BARLEY
-
HAMMERSTONE
public static final Produce HAMMERSTONE
-
ASGARNIAN
public static final Produce ASGARNIAN
-
JUTE
public static final Produce JUTE
-
YANILLIAN
public static final Produce YANILLIAN
-
KRANDORIAN
public static final Produce KRANDORIAN
-
WILDBLOOD
public static final Produce WILDBLOOD
-
GUAM
public static final Produce GUAM
-
MARRENTILL
public static final Produce MARRENTILL
-
TARROMIN
public static final Produce TARROMIN
-
HARRALANDER
public static final Produce HARRALANDER
-
RANARR
public static final Produce RANARR
-
TOADFLAX
public static final Produce TOADFLAX
-
IRIT
public static final Produce IRIT
-
AVANTOE
public static final Produce AVANTOE
-
KWUARM
public static final Produce KWUARM
-
HUASCA
public static final Produce HUASCA
-
SNAPDRAGON
public static final Produce SNAPDRAGON
-
CADANTINE
public static final Produce CADANTINE
-
LANTADYME
public static final Produce LANTADYME
-
DWARF_WEED
public static final Produce DWARF_WEED
-
TORSTOL
public static final Produce TORSTOL
-
GOUTWEED
public static final Produce GOUTWEED
-
ANYHERB
public static final Produce ANYHERB
-
OAK
public static final Produce OAK
-
WILLOW
public static final Produce WILLOW
-
MAPLE
public static final Produce MAPLE
-
YEW
public static final Produce YEW
-
MAGIC
public static final Produce MAGIC
-
APPLE
public static final Produce APPLE
-
BANANA
public static final Produce BANANA
-
ORANGE
public static final Produce ORANGE
-
CURRY
public static final Produce CURRY
-
PINEAPPLE
public static final Produce PINEAPPLE
-
PAPAYA
public static final Produce PAPAYA
-
PALM
public static final Produce PALM
-
DRAGONFRUIT
public static final Produce DRAGONFRUIT
-
CACTUS
public static final Produce CACTUS
-
POTATO_CACTUS
public static final Produce POTATO_CACTUS
-
TEAK
public static final Produce TEAK
-
MAHOGANY
public static final Produce MAHOGANY
-
ATTAS
public static final Produce ATTAS
-
IASOR
public static final Produce IASOR
-
KRONOS
public static final Produce KRONOS
-
SEAWEED
public static final Produce SEAWEED
-
GRAPE
public static final Produce GRAPE
-
MUSHROOM
public static final Produce MUSHROOM
-
BELLADONNA
public static final Produce BELLADONNA
-
CALQUAT
public static final Produce CALQUAT
-
SPIRIT_TREE
public static final Produce SPIRIT_TREE
-
CELASTRUS
public static final Produce CELASTRUS
-
REDWOOD
public static final Produce REDWOOD
-
HESPORI
public static final Produce HESPORI
-
CRYSTAL_TREE
public static final Produce CRYSTAL_TREE
-
EMPTY_COMPOST_BIN
public static final Produce EMPTY_COMPOST_BIN
-
COMPOST
public static final Produce COMPOST
-
SUPERCOMPOST
public static final Produce SUPERCOMPOST
-
ULTRACOMPOST
public static final Produce ULTRACOMPOST
-
ROTTEN_TOMATO
public static final Produce ROTTEN_TOMATO
-
EMPTY_BIG_COMPOST_BIN
public static final Produce EMPTY_BIG_COMPOST_BIN
-
BIG_COMPOST
public static final Produce BIG_COMPOST
-
BIG_SUPERCOMPOST
public static final Produce BIG_SUPERCOMPOST
-
BIG_ULTRACOMPOST
public static final Produce BIG_ULTRACOMPOST
-
BIG_ROTTEN_TOMATO
public static final Produce BIG_ROTTEN_TOMATO
-
-
Method Detail
-
values
public static Produce[] 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 (Produce c : Produce.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Produce 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
-
getName
public String getName()
User-visible name
-
getContractName
public String getContractName()
Farming contract names
-
getPatchImplementation
public PatchImplementation getPatchImplementation()
Patch type for the crop
-
getItemID
public int getItemID()
User-visible item icon
-
getTickrate
public int getTickrate()
How many minutes per growth tick
-
getStages
public int getStages()
How many states this crop has during growth. Typically tickcount+1
-
getRegrowTickrate
public int getRegrowTickrate()
How many minutes to regrow crops, or zero if it doesn't regrow
-
getHarvestStages
public int getHarvestStages()
How many states this crop has during harvest. This is often called lives.
-
-