public enum WanFilterEventType extends Enum<WanFilterEventType>
CacheWanEventFilter
and MapWanEventFilter instances.| Enum Constant and Description |
|---|
LOADED
An event type indicating that the entry was loaded.
|
REMOVED
An event type indicating that the entry was removed.
|
UPDATED
An event type indicating that the related entry was created or updated.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getType() |
static WanFilterEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WanFilterEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WanFilterEventType UPDATED
public static final WanFilterEventType REMOVED
public static final WanFilterEventType LOADED
public static WanFilterEventType[] values()
for (WanFilterEventType c : WanFilterEventType.values()) System.out.println(c);
public static WanFilterEventType 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 nullpublic int getType()
Copyright © 2021 Hazelcast, Inc.. All rights reserved.