public enum ConfigurationFormat extends Enum<ConfigurationFormat>
Java class for configurationFormat.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="configurationFormat">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="structured"/>
<enumeration value="raw"/>
<enumeration value="both"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BOTH |
RAW |
STRUCTURED |
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationFormat |
fromValue(String v) |
String |
value() |
static ConfigurationFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationFormat STRUCTURED
public static final ConfigurationFormat RAW
public static final ConfigurationFormat BOTH
public static ConfigurationFormat[] values()
for (ConfigurationFormat c : ConfigurationFormat.values()) System.out.println(c);
public static ConfigurationFormat 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 ConfigurationFormat fromValue(String v)
Copyright © 2008-2013 Red Hat, Inc.. All Rights Reserved.