public enum CaSystemStatus extends Enum<CaSystemStatus>
| Enum Constant and Description |
|---|
ERROR |
INITIALIZING |
LOCK_FAILED |
NOT_INITED |
STARTED_AS_MASTER |
STARTED_AS_SLAVE |
| Modifier and Type | Method and Description |
|---|---|
static CaSystemStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaSystemStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaSystemStatus STARTED_AS_MASTER
public static final CaSystemStatus STARTED_AS_SLAVE
public static final CaSystemStatus NOT_INITED
public static final CaSystemStatus INITIALIZING
public static final CaSystemStatus LOCK_FAILED
public static final CaSystemStatus ERROR
public static CaSystemStatus[] values()
for (CaSystemStatus c : CaSystemStatus.values()) System.out.println(c);
public static CaSystemStatus 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. All rights reserved.