public static enum ClientEvent.Type extends Enum<ClientEvent.Type>
Enum Constant and Description |
---|
CLIENT_CACHE_ENTRY_CREATED |
CLIENT_CACHE_ENTRY_EXPIRED |
CLIENT_CACHE_ENTRY_MODIFIED |
CLIENT_CACHE_ENTRY_REMOVED |
CLIENT_CACHE_FAILOVER |
Modifier and Type | Method and Description |
---|---|
static ClientEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientEvent.Type CLIENT_CACHE_ENTRY_CREATED
public static final ClientEvent.Type CLIENT_CACHE_ENTRY_MODIFIED
public static final ClientEvent.Type CLIENT_CACHE_ENTRY_REMOVED
public static final ClientEvent.Type CLIENT_CACHE_ENTRY_EXPIRED
public static final ClientEvent.Type CLIENT_CACHE_FAILOVER
public static ClientEvent.Type[] values()
for (ClientEvent.Type c : ClientEvent.Type.values()) System.out.println(c);
public static ClientEvent.Type 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 © 2021 JBoss by Red Hat. All rights reserved.