public enum TomcatRuntime extends Enum<TomcatRuntime>
| Enum Constant and Description | 
|---|
| TEST,
 Runtime jar testing or war testing. | 
| UBER_JARRuntime java -jar jar packaging. | 
| UBER_WARRuntime java -jar war packaging. | 
| UNPACKAGED_JARRuntime jar inside IDE. | 
| UNPACKAGED_WARRuntime war inside tomcat servlet container. | 
| Modifier and Type | Method and Description | 
|---|---|
| static TomcatRuntime | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TomcatRuntime[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TomcatRuntime UNPACKAGED_JAR
public static final TomcatRuntime TEST
public static final TomcatRuntime UBER_JAR
public static final TomcatRuntime UBER_WAR
public static final TomcatRuntime UNPACKAGED_WAR
public static TomcatRuntime[] values()
for (TomcatRuntime c : TomcatRuntime.values()) System.out.println(c);
public static TomcatRuntime 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 nullCopyright © 2016–2017 JoinFaces. All rights reserved.