public enum ConfigTypeEnum extends Enum<ConfigTypeEnum>
Classe Java pour ConfigTypeEnum.
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
<simpleType name="ConfigTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Deployment"/>
<enumeration value="Installation"/>
<enumeration value="Logger"/>
<enumeration value="System"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEPLOYMENT |
INSTALLATION |
LOGGER |
SYSTEM |
| Modifier and Type | Method and Description |
|---|---|
static ConfigTypeEnum |
fromValue(String v) |
String |
value() |
static ConfigTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigTypeEnum DEPLOYMENT
public static final ConfigTypeEnum INSTALLATION
public static final ConfigTypeEnum LOGGER
public static final ConfigTypeEnum SYSTEM
public static ConfigTypeEnum[] values()
for (ConfigTypeEnum c : ConfigTypeEnum.values()) System.out.println(c);
public static ConfigTypeEnum 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 ConfigTypeEnum fromValue(String v)
Copyright © 2011-2016 OpenESB Community. All Rights Reserved.