Package emi.dev.emi.emi.api
Enum Class EmiFillAction
- All Implemented Interfaces:
Serializable,Comparable<EmiFillAction>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMove the ingredients to where they belong.Move the ingredients to where they belong.Move the ingredients to where they belong. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic EmiFillActionReturns the enum constant of this class with the specified name.static EmiFillAction[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FILL
Move the ingredients to where they belong. -
CURSOR
Move the ingredients to where they belong. Then, attempt to immediately grab the result and place in cursor. If this action is not supported, this should do nothing more than FILL. -
QUICK_MOVE
Move the ingredients to where they belong. Then, attempt to immediately quick move the result, likely into the player's inventory. If this action is not supported, this should do nothing more than FILL.
-
-
Field Details
-
id
public final int id
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-