public enum CacheRegistryFilter extends Enum<CacheRegistryFilter> implements org.infinispan.notifications.cachelistener.filter.CacheEventFilter<Object,Object>, Predicate<Object>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
accept(Object key,
Object oldValue,
org.infinispan.metadata.Metadata oldMetadata,
Object newValue,
org.infinispan.metadata.Metadata newMetadata,
org.infinispan.notifications.cachelistener.filter.EventType eventType) |
boolean |
test(Object key) |
static CacheRegistryFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheRegistryFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfpublic static final CacheRegistryFilter INSTANCE
public static CacheRegistryFilter[] values()
for (CacheRegistryFilter c : CacheRegistryFilter.values()) System.out.println(c);
public static CacheRegistryFilter 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 boolean accept(Object key, Object oldValue, org.infinispan.metadata.Metadata oldMetadata, Object newValue, org.infinispan.metadata.Metadata newMetadata, org.infinispan.notifications.cachelistener.filter.EventType eventType)
Copyright © 2022 JBoss by Red Hat. All rights reserved.