Enum Class RangeCep.State

java.lang.Object
java.lang.Enum<RangeCep.State>
ca.uqac.lif.cep.complex.RangeCep.State
All Implemented Interfaces:
Serializable, Comparable<RangeCep.State>, Constable
Enclosing class:
RangeCep

protected static enum RangeCep.State extends Enum<RangeCep.State>
The current state of the range, which is updated upon receiving each input event.
  • Enum Constant Details

    • BEFORE

      public static final RangeCep.State BEFORE
      The event received lies before the start of the range.
    • ONGOING

      public static final RangeCep.State ONGOING
      The event received is included within the range.
    • AFTER

      public static final RangeCep.State AFTER
      The event received is after the end of the range.
  • Method Details

    • values

      public static RangeCep.State[] 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 RangeCep.State 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