Package io.siddhi.core.event.stream
Enum Operation.Operator
- java.lang.Object
-
- java.lang.Enum<Operation.Operator>
-
- io.siddhi.core.event.stream.Operation.Operator
-
- All Implemented Interfaces:
Serializable,Comparable<Operation.Operator>
- Enclosing class:
- Operation
public static enum Operation.Operator extends Enum<Operation.Operator>
Possible Operator actions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDCLEARDELETE_BY_INDEXDELETE_BY_OPERATOROVERWRITEREMOVE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Operation.OperatorvalueOf(String name)Returns the enum constant of this type with the specified name.static Operation.Operator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD
public static final Operation.Operator ADD
-
REMOVE
public static final Operation.Operator REMOVE
-
CLEAR
public static final Operation.Operator CLEAR
-
OVERWRITE
public static final Operation.Operator OVERWRITE
-
DELETE_BY_OPERATOR
public static final Operation.Operator DELETE_BY_OPERATOR
-
DELETE_BY_INDEX
public static final Operation.Operator DELETE_BY_INDEX
-
-
Method Detail
-
values
public static Operation.Operator[] 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 (Operation.Operator c : Operation.Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Operation.Operator 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
-
-