Enum OutputStream.OutputEventType
- java.lang.Object
-
- java.lang.Enum<OutputStream.OutputEventType>
-
- io.siddhi.query.api.execution.query.output.stream.OutputStream.OutputEventType
-
- All Implemented Interfaces:
Serializable,Comparable<OutputStream.OutputEventType>
- Enclosing class:
- OutputStream
public static enum OutputStream.OutputEventType extends Enum<OutputStream.OutputEventType>
Output event types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_EVENTSALL_RAW_EVENTSCURRENT_EVENTSEXPIRED_EVENTSEXPIRED_RAW_EVENTS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OutputStream.OutputEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OutputStream.OutputEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXPIRED_EVENTS
public static final OutputStream.OutputEventType EXPIRED_EVENTS
-
CURRENT_EVENTS
public static final OutputStream.OutputEventType CURRENT_EVENTS
-
ALL_EVENTS
public static final OutputStream.OutputEventType ALL_EVENTS
-
ALL_RAW_EVENTS
public static final OutputStream.OutputEventType ALL_RAW_EVENTS
-
EXPIRED_RAW_EVENTS
public static final OutputStream.OutputEventType EXPIRED_RAW_EVENTS
-
-
Method Detail
-
values
public static OutputStream.OutputEventType[] 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 (OutputStream.OutputEventType c : OutputStream.OutputEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OutputStream.OutputEventType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-