RuneHive-Game
Loading...
Searching...
No Matches
PriceType.java
Go to the documentation of this file.
1
package
com.runehive.game.world.items.containers.pricechecker;
2
3
/**
4
* The price type enum.
5
*
6
* @author Daniel
7
*/
8
public
enum
PriceType
{
9
/**
10
* The value price type.
11
*/
12
VALUE
,
13
14
/**
15
* The high alchemy price type.
16
*/
17
HIGH_ALCH_VALUE
,
18
19
/**
20
* The high alchemy price type.
21
*/
22
LOW_ALCH_VALUE
23
}
com.runehive.game.world.items.containers.pricechecker.PriceType
The price type enum.
Definition
PriceType.java:8
com.runehive.game.world.items.containers.pricechecker.PriceType.LOW_ALCH_VALUE
LOW_ALCH_VALUE
The high alchemy price type.
Definition
PriceType.java:22
com.runehive.game.world.items.containers.pricechecker.PriceType.HIGH_ALCH_VALUE
HIGH_ALCH_VALUE
The high alchemy price type.
Definition
PriceType.java:17
com.runehive.game.world.items.containers.pricechecker.PriceType.VALUE
VALUE
The value price type.
Definition
PriceType.java:12