Module is.codion.tools.swing.robot
Package is.codion.tools.swing.robot
Enum Class Interaction.Delivery
- All Implemented Interfaces:
Serializable,Comparable<Interaction.Delivery>,Constable
- Enclosing class:
Interaction
The observed outcome of an interaction.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe event was observed and consumed by a component, in other words it did something.The event was observed but not consumed, in other words it fell through and most likely did nothing.No matching event was observed, in other words the keystroke did not go through. -
Method Summary
Modifier and TypeMethodDescriptionstatic Interaction.DeliveryReturns the enum constant of this class with the specified name.static Interaction.Delivery[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONSUMED
The event was observed and consumed by a component, in other words it did something. -
FELL_THROUGH
The event was observed but not consumed, in other words it fell through and most likely did nothing. -
MISSED
No matching event was observed, in other words the keystroke did not go through.
-
-
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
-