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