Package ca.uqac.lif.cep.complex
Enum RangeCep.State
- java.lang.Object
-
- java.lang.Enum<RangeCep.State>
-
- ca.uqac.lif.cep.complex.RangeCep.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RangeCep.State>
- Enclosing class:
- RangeCep
protected static enum RangeCep.State extends java.lang.Enum<RangeCep.State>
The current state of the range, which is updated upon receiving each input event.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RangeCep.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RangeCep.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static RangeCep.State[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RangeCep.State c : RangeCep.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RangeCep.State valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-