public enum MultipathState extends Enum<MultipathState>
Java class for MultipathState.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MultipathState">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="standby"/>
<enumeration value="active"/>
<enumeration value="disabled"/>
<enumeration value="dead"/>
<enumeration value="unknown"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACTIVE |
DEAD |
DISABLED |
STANDBY |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static MultipathState |
fromValue(String v) |
String |
value() |
static MultipathState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultipathState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultipathState STANDBY
public static final MultipathState ACTIVE
public static final MultipathState DISABLED
public static final MultipathState DEAD
public static final MultipathState UNKNOWN
public static MultipathState[] values()
for (MultipathState c : MultipathState.values()) System.out.println(c);
public static MultipathState 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 nullpublic String value()
public static MultipathState fromValue(String v)
Copyright © 2018. All rights reserved.