public enum StackingHealth extends Enum<StackingHealth>
Enum Constant and Description |
---|
BiConnected |
Connected |
Disconnected |
DisconnectedShutdown |
NotApplicable |
Unknown |
Modifier and Type | Method and Description |
---|---|
static StackingHealth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StackingHealth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackingHealth BiConnected
public static final StackingHealth Connected
public static final StackingHealth Disconnected
public static final StackingHealth DisconnectedShutdown
public static final StackingHealth NotApplicable
public static final StackingHealth Unknown
public static StackingHealth[] values()
for (StackingHealth c : StackingHealth.values()) System.out.println(c);
public static StackingHealth 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 © 2016. All rights reserved.