public enum HaMode extends Enum<HaMode>
Enum Constant and Description |
---|
AURORA |
LOADBALANCE |
NONE |
REPLICATION |
SEQUENTIAL |
Modifier and Type | Method and Description |
---|---|
static HaMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HaMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HaMode AURORA
public static final HaMode REPLICATION
public static final HaMode SEQUENTIAL
public static final HaMode LOADBALANCE
public static final HaMode NONE
public static HaMode[] values()
for (HaMode c : HaMode.values()) System.out.println(c);
public static HaMode 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 mariadb.com. All rights reserved.