public static enum CompositeEvictionChecker.CompositionOperator extends Enum<CompositeEvictionChecker.CompositionOperator>
EvictionChecker instances.| Enum Constant and Description | 
|---|
| ANDResult is true if results of all given  EvictionCheckerinstances
 have reached to max-size, otherwise false. | 
| ORResult is true if result of any given  EvictionCheckerinstances
 have reached to max-size, otherwise false. | 
| Modifier and Type | Method and Description | 
|---|---|
| static CompositeEvictionChecker.CompositionOperator | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static CompositeEvictionChecker.CompositionOperator[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CompositeEvictionChecker.CompositionOperator AND
EvictionChecker instances
 have reached to max-size, otherwise false.public static final CompositeEvictionChecker.CompositionOperator OR
EvictionChecker instances
 have reached to max-size, otherwise false.public static CompositeEvictionChecker.CompositionOperator[] values()
for (CompositeEvictionChecker.CompositionOperator c : CompositeEvictionChecker.CompositionOperator.values()) System.out.println(c);
public static CompositeEvictionChecker.CompositionOperator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 Hazelcast, Inc.. All Rights Reserved.