public enum ContainerType extends java.lang.Enum<ContainerType>
| Enum Constant and Description |
|---|
DIR |
EAR |
JAR |
META_DATA |
OSGI_BUNDLE |
RAR |
SPRING_BOOT_JAR |
UNKNOWN |
WAR |
| Modifier and Type | Method and Description |
|---|---|
static ContainerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerType DIR
public static final ContainerType JAR
public static final ContainerType RAR
public static final ContainerType WAR
public static final ContainerType EAR
public static final ContainerType OSGI_BUNDLE
public static final ContainerType SPRING_BOOT_JAR
public static final ContainerType META_DATA
public static final ContainerType UNKNOWN
public static ContainerType[] values()
for (ContainerType c : ContainerType.values()) System.out.println(c);
public static ContainerType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null