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