public enum HaCapability extends java.lang.Enum<HaCapability>
| Enum Constant and Description |
|---|
RA_ENDPOINT_HA |
RA_INSTANCE_HA |
RA_NO_HA |
| Modifier and Type | Method and Description |
|---|---|
static HaCapability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HaCapability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HaCapability RA_NO_HA
public static final HaCapability RA_ENDPOINT_HA
public static final HaCapability RA_INSTANCE_HA
public static HaCapability[] values()
for (HaCapability c : HaCapability.values()) System.out.println(c);
public static HaCapability valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null