Enum Class EmiFillAction

java.lang.Object
java.lang.Enum<EmiFillAction>
emi.dev.emi.emi.api.EmiFillAction
All Implemented Interfaces:
Serializable, Comparable<EmiFillAction>, Constable

public enum EmiFillAction extends Enum<EmiFillAction>
  • Enum Constant Details

    • FILL

      public static final EmiFillAction FILL
      Move the ingredients to where they belong.
    • CURSOR

      public static final EmiFillAction 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

      public static final EmiFillAction 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

      public static EmiFillAction[] 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 EmiFillAction 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