public static enum LifecycleEvent.LifecycleState extends Enum<LifecycleEvent.LifecycleState>
| Enum Constant and Description | 
|---|
CLIENT_CHANGED_CLUSTER
Fired when a client is connected to a new cluster. 
 | 
CLIENT_CONNECTED
Fired when a client is connected to the member. 
 | 
CLIENT_DISCONNECTED
Fired when a client is disconnected from the member. 
 | 
MERGE_FAILED
Fired when the merge process failed for some reason. 
 | 
MERGED
Fired when the merge process was successful and all data has been
 merged. 
 | 
MERGING
Fired on each cluster member just before the start of a merge
 process into another cluster. 
 | 
SHUTDOWN
Fired when the member shut down is completed. 
 | 
SHUTTING_DOWN
Fired when the member is shutting down. 
 | 
STARTED
Fired when the member start is completed. 
 | 
STARTING
Fired when the member is starting. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static LifecycleEvent.LifecycleState | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static LifecycleEvent.LifecycleState[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LifecycleEvent.LifecycleState STARTING
public static final LifecycleEvent.LifecycleState STARTED
public static final LifecycleEvent.LifecycleState SHUTTING_DOWN
public static final LifecycleEvent.LifecycleState SHUTDOWN
public static final LifecycleEvent.LifecycleState MERGING
public static final LifecycleEvent.LifecycleState MERGED
public static final LifecycleEvent.LifecycleState MERGE_FAILED
public static final LifecycleEvent.LifecycleState CLIENT_CONNECTED
public static final LifecycleEvent.LifecycleState CLIENT_DISCONNECTED
public static final LifecycleEvent.LifecycleState CLIENT_CHANGED_CLUSTER
public static LifecycleEvent.LifecycleState[] values()
for (LifecycleEvent.LifecycleState c : LifecycleEvent.LifecycleState.values()) System.out.println(c);
public static LifecycleEvent.LifecycleState 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 Hazelcast, Inc.. All rights reserved.