public static enum DistributedObjectEvent.EventType extends Enum<DistributedObjectEvent.EventType>
Enum Constant and Description |
---|
CREATED
Event if a DistributedObjectEvent is created.
|
DESTROYED
Event if a DistributedObjectEvent is destroyed.
|
Modifier and Type | Method and Description |
---|---|
static DistributedObjectEvent.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistributedObjectEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributedObjectEvent.EventType CREATED
public static final DistributedObjectEvent.EventType DESTROYED
public static DistributedObjectEvent.EventType[] values()
for (DistributedObjectEvent.EventType c : DistributedObjectEvent.EventType.values()) System.out.println(c);
public static DistributedObjectEvent.EventType 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 © 2020 Hazelcast, Inc.. All rights reserved.