Package com.epicbot.api.shared.methods
Enum IGrandExchangeAPI.GrandExchangeScreen
- java.lang.Object
-
- java.lang.Enum<IGrandExchangeAPI.GrandExchangeScreen>
-
- com.epicbot.api.shared.methods.IGrandExchangeAPI.GrandExchangeScreen
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IGrandExchangeAPI.GrandExchangeScreen>
- Enclosing interface:
- IGrandExchangeAPI
public static enum IGrandExchangeAPI.GrandExchangeScreen extends java.lang.Enum<IGrandExchangeAPI.GrandExchangeScreen>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE_BUY_OFFER
ACTIVE_SELL_OFFER
NONE
The grand exchange widget is not open.OVERVIEW
SETUP_BUY_OFFER
SETUP_SELL_OFFER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IGrandExchangeAPI.GrandExchangeScreen
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IGrandExchangeAPI.GrandExchangeScreen[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final IGrandExchangeAPI.GrandExchangeScreen NONE
The grand exchange widget is not open.
-
OVERVIEW
public static final IGrandExchangeAPI.GrandExchangeScreen OVERVIEW
-
ACTIVE_BUY_OFFER
public static final IGrandExchangeAPI.GrandExchangeScreen ACTIVE_BUY_OFFER
-
ACTIVE_SELL_OFFER
public static final IGrandExchangeAPI.GrandExchangeScreen ACTIVE_SELL_OFFER
-
SETUP_BUY_OFFER
public static final IGrandExchangeAPI.GrandExchangeScreen SETUP_BUY_OFFER
-
SETUP_SELL_OFFER
public static final IGrandExchangeAPI.GrandExchangeScreen SETUP_SELL_OFFER
-
-
Method Detail
-
values
public static IGrandExchangeAPI.GrandExchangeScreen[] 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 (IGrandExchangeAPI.GrandExchangeScreen c : IGrandExchangeAPI.GrandExchangeScreen.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IGrandExchangeAPI.GrandExchangeScreen valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-