public static enum LifecycleEvent.LifecycleState extends Enum<LifecycleEvent.LifecycleState>
| Enum Constant and Description | 
|---|
| CLIENT_CHANGED_CLUSTERFired when a client is connected to a new cluster. | 
| CLIENT_CONNECTEDFired when a client is connected to the member. | 
| CLIENT_DISCONNECTEDFired when a client is disconnected from the member. | 
| MERGE_FAILEDFired when the merge process failed for some reason. | 
| MERGEDFired when the merge process was successful and all data has been
 merged. | 
| MERGINGFired on each cluster member just before the start of a merge
 process into another cluster. | 
| SHUTDOWNFired when the member shut down is completed. | 
| SHUTTING_DOWNFired when the member is shutting down. | 
| STARTEDFired when the member start is completed. | 
| STARTINGFired 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.