public static enum EvictionPolicy.Action extends Enum<EvictionPolicy.Action>
The action to be taken when EvictionPolicy.evict(Event) is invoked.
| Enum Constant and Description | 
|---|
| EXPIREexpire the event and remove it from the queue | 
| KEEPdon't include in the current window but keep the event
 in the queue for evaluating as a part of future windows | 
| PROCESSprocess the event in the current window of events | 
| STOPstop processing the queue, there cannot be anymore events
 satisfying the eviction policy | 
| Modifier and Type | Method and Description | 
|---|---|
| static EvictionPolicy.Action | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static EvictionPolicy.Action[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final EvictionPolicy.Action EXPIRE
public static final EvictionPolicy.Action PROCESS
public static final EvictionPolicy.Action KEEP
public static final EvictionPolicy.Action STOP
public static EvictionPolicy.Action[] values()
for (EvictionPolicy.Action c : EvictionPolicy.Action.values()) System.out.println(c);
public static EvictionPolicy.Action 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 © 2022 The Apache Software Foundation. All Rights Reserved.