Enum TomcatRuntime
- java.lang.Object
- 
- java.lang.Enum<TomcatRuntime>
- 
- org.joinfaces.autoconfigure.tomcat.TomcatRuntime
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<TomcatRuntime>
 
 public enum TomcatRuntime extends Enum<TomcatRuntime> Tomcat runtime environment.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant 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.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static TomcatRuntimevalueOf(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.
 
- 
- 
- 
Enum Constant Detail- 
UNPACKAGED_JARpublic static final TomcatRuntime UNPACKAGED_JAR Runtime jar inside IDE.
 - 
TESTpublic static final TomcatRuntime TEST , Runtime jar testing or war testing.
 - 
UBER_JARpublic static final TomcatRuntime UBER_JAR Runtime java -jar jar packaging.
 - 
UBER_WARpublic static final TomcatRuntime UBER_WAR Runtime java -jar war packaging.
 - 
UNPACKAGED_WARpublic static final TomcatRuntime UNPACKAGED_WAR Runtime war inside tomcat servlet container.
 
- 
 - 
Method Detail- 
valuespublic static TomcatRuntime[] 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 (TomcatRuntime c : TomcatRuntime.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static TomcatRuntime valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-