Enum Class EmiCraftContext.Destination
java.lang.Object
java.lang.Enum<EmiCraftContext.Destination>
emi.dev.emi.emi.api.recipe.handler.EmiCraftContext.Destination
- All Implemented Interfaces:
Serializable,Comparable<EmiCraftContext.Destination>,Constable
- Enclosing class:
- EmiCraftContext<T extends Container>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic EmiCraftContext.DestinationReturns the enum constant of this class with the specified name.static EmiCraftContext.Destination[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No output, simply move the ingredients to where they belong. -
CURSOR
If possible, immediately craft the recipe and move it into the player's cursor. If this action is not supported, this should do nothing more than FILL. -
INVENTORY
If possible, immediately craft the recipe and move it into the player's inventory. If this action is not supported, this should do nothing more than FILL.
-
-
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
-