Enum Class Interaction.Delivery

java.lang.Object
java.lang.Enum<Interaction.Delivery>
is.codion.tools.swing.robot.Interaction.Delivery
All Implemented Interfaces:
Serializable, Comparable<Interaction.Delivery>, Constable
Enclosing class:
Interaction

public static enum Interaction.Delivery extends Enum<Interaction.Delivery>
The observed outcome of an interaction.
  • Enum Constant Details

    • CONSUMED

      public static final Interaction.Delivery CONSUMED
      The event was observed and consumed by a component, in other words it did something.
    • FELL_THROUGH

      public static final Interaction.Delivery FELL_THROUGH
      The event was observed but not consumed, in other words it fell through and most likely did nothing.
    • MISSED

      public static final Interaction.Delivery MISSED
      No matching event was observed, in other words the keystroke did not go through.
  • Method Details

    • values

      public static Interaction.Delivery[] 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 Interaction.Delivery 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