public enum AppserverType extends Enum<AppserverType>
| Enum Constant and Description |
|---|
GLASSFISH |
JBOSS |
TOMCAT |
UNKNOWN |
WEBSPHERE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AppserverType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppserverType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppserverType UNKNOWN
public static final AppserverType TOMCAT
public static final AppserverType JBOSS
public static final AppserverType WEBSPHERE
public static final AppserverType GLASSFISH
public static AppserverType[] values()
for (AppserverType c : AppserverType.values()) System.out.println(c);
public static AppserverType 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 toString()
toString in class Enum<AppserverType>Copyright © 2018 Pivotal Software, Inc.. All rights reserved.