public static enum MemberClusterStartInfo.DataLoadStatus extends Enum<MemberClusterStartInfo.DataLoadStatus>
| Enum Constant and Description |
|---|
LOAD_FAILED
Denotes that member data load is failed
|
LOAD_IN_PROGRESS
Denotes that member data load is in progress
|
LOAD_SUCCESSFUL
Denotes that member data load is completed successfully
|
| Modifier and Type | Method and Description |
|---|---|
static MemberClusterStartInfo.DataLoadStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemberClusterStartInfo.DataLoadStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberClusterStartInfo.DataLoadStatus LOAD_IN_PROGRESS
public static final MemberClusterStartInfo.DataLoadStatus LOAD_SUCCESSFUL
public static final MemberClusterStartInfo.DataLoadStatus LOAD_FAILED
public static MemberClusterStartInfo.DataLoadStatus[] values()
for (MemberClusterStartInfo.DataLoadStatus c : MemberClusterStartInfo.DataLoadStatus.values()) System.out.println(c);
public static MemberClusterStartInfo.DataLoadStatus 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.