Package de.hybris.platform.util
Enum Config.AppServer
- java.lang.Object
-
- java.lang.Enum<Config.AppServer>
-
- de.hybris.platform.util.Config.AppServer
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Config.AppServer>
- Enclosing class:
- Config
public static enum Config.AppServer extends java.lang.Enum<Config.AppServer>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Config.AppServervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Config.AppServer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
oc4j
public static final Config.AppServer oc4j
-
jboss
public static final Config.AppServer jboss
-
geronimo
public static final Config.AppServer geronimo
-
websphere
public static final Config.AppServer websphere
-
orion
public static final Config.AppServer orion
-
weblogic
public static final Config.AppServer weblogic
-
tomcat
public static final Config.AppServer tomcat
-
standalone
public static final Config.AppServer standalone
-
-
Method Detail
-
values
public static Config.AppServer[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Config.AppServer c : Config.AppServer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Config.AppServer valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-