Enum CacheOperationFilter
- java.lang.Object
-
- java.lang.Enum<CacheOperationFilter>
-
- org.apache.ignite.internal.processors.cache.CacheOperationFilter
-
- All Implemented Interfaces:
Serializable,Comparable<CacheOperationFilter>
public enum CacheOperationFilter extends Enum<CacheOperationFilter>
Cache operation filter.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYSAlways pass.EQUALS_VALEquals to value.HAS_VALHas value.NO_VALNo value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable CacheEntryPredicatecreatePredicate(@Nullable CacheObject val)Creare predicate from operation filter.static CacheOperationFiltervalueOf(String name)Returns the enum constant of this type with the specified name.static CacheOperationFilter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALWAYS
public static final CacheOperationFilter ALWAYS
Always pass.
-
NO_VAL
public static final CacheOperationFilter NO_VAL
No value.
-
HAS_VAL
public static final CacheOperationFilter HAS_VAL
Has value.
-
EQUALS_VAL
public static final CacheOperationFilter EQUALS_VAL
Equals to value.
-
-
Method Detail
-
values
public static CacheOperationFilter[] 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 (CacheOperationFilter c : CacheOperationFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CacheOperationFilter 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
-
createPredicate
@Nullable public @Nullable CacheEntryPredicate createPredicate(@Nullable @Nullable CacheObject val)
Creare predicate from operation filter.- Parameters:
val- Optional value.- Returns:
- Predicate.
-
-