Enum CollectionExpression.CollectionScope
- java.lang.Object
-
- java.lang.Enum<CollectionExpression.CollectionScope>
-
- io.siddhi.core.util.collection.expression.CollectionExpression.CollectionScope
-
- All Implemented Interfaces:
Serializable,Comparable<CollectionExpression.CollectionScope>
- Enclosing interface:
- CollectionExpression
public static enum CollectionExpression.CollectionScope extends Enum<CollectionExpression.CollectionScope>
Enums to hold collection expression scopes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXHAUSTIVEINDEXED_ATTRIBUTEINDEXED_RESULT_SETNONOPTIMISED_PRIMARY_KEY_OR_INDEXED_RESULT_SETPARTIAL_PRIMARY_KEY_ATTRIBUTEPARTIAL_PRIMARY_KEY_RESULT_SETPRIMARY_KEY_ATTRIBUTEPRIMARY_KEY_RESULT_SET
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CollectionExpression.CollectionScopevalueOf(String name)Returns the enum constant of this type with the specified name.static CollectionExpression.CollectionScope[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NON
public static final CollectionExpression.CollectionScope NON
-
PRIMARY_KEY_ATTRIBUTE
public static final CollectionExpression.CollectionScope PRIMARY_KEY_ATTRIBUTE
-
PRIMARY_KEY_RESULT_SET
public static final CollectionExpression.CollectionScope PRIMARY_KEY_RESULT_SET
-
INDEXED_ATTRIBUTE
public static final CollectionExpression.CollectionScope INDEXED_ATTRIBUTE
-
INDEXED_RESULT_SET
public static final CollectionExpression.CollectionScope INDEXED_RESULT_SET
-
PARTIAL_PRIMARY_KEY_ATTRIBUTE
public static final CollectionExpression.CollectionScope PARTIAL_PRIMARY_KEY_ATTRIBUTE
-
PARTIAL_PRIMARY_KEY_RESULT_SET
public static final CollectionExpression.CollectionScope PARTIAL_PRIMARY_KEY_RESULT_SET
-
OPTIMISED_PRIMARY_KEY_OR_INDEXED_RESULT_SET
public static final CollectionExpression.CollectionScope OPTIMISED_PRIMARY_KEY_OR_INDEXED_RESULT_SET
-
EXHAUSTIVE
public static final CollectionExpression.CollectionScope EXHAUSTIVE
-
-
Method Detail
-
values
public static CollectionExpression.CollectionScope[] 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 (CollectionExpression.CollectionScope c : CollectionExpression.CollectionScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CollectionExpression.CollectionScope 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
-
-