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>

public static enum EmiCraftContext.Destination extends Enum<EmiCraftContext.Destination>
  • Enum Constant Details

    • NONE

      public static final EmiCraftContext.Destination NONE
      No output, simply move the ingredients to where they belong.
    • CURSOR

      public static final EmiCraftContext.Destination 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

      public static final EmiCraftContext.Destination 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

      public static EmiCraftContext.Destination[] 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

      public static EmiCraftContext.Destination valueOf(String name)
      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 name
      NullPointerException - if the argument is null