Enum Class GEvent.Operation

java.lang.Object
java.lang.Enum<GEvent.Operation>
com.iizix.event.GEvent.Operation
All Implemented Interfaces:
Serializable, Comparable<GEvent.Operation>, Constable
Enclosing class:
GEvent

public static enum GEvent.Operation extends Enum<GEvent.Operation>
Operations enumeration when sending the from the GProp.onEvent method.
  • Enum Constant Details

    • INITIALIZED

      public static final GEvent.Operation INITIALIZED
      Initialized operation, the initial state of a newly created event.
    • SELF

      public static final GEvent.Operation SELF
      Operation to send the event to the property itself.
    • LISTENERS

      public static final GEvent.Operation LISTENERS
      Operation to send the event to all event listeners.
    • PARENT

      public static final GEvent.Operation PARENT
      Operation to send the event to the parent.
    • CHILDREN

      public static final GEvent.Operation CHILDREN
      Operation to send the event to all children, if the property is a container.
  • Method Details

    • values

      public static GEvent.Operation[] 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 GEvent.Operation 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