public static enum AbstractPackagerMojo.LayoutType extends java.lang.Enum<AbstractPackagerMojo.LayoutType>
| Enum Constant and Description |
|---|
DIR
Directory Layout.
|
JAR
Jar Layout.
|
NONE
No Layout.
|
WAR
War Layout.
|
ZIP
Zip Layout.
|
| Modifier and Type | Method and Description |
|---|---|
org.springframework.boot.loader.tools.Layout |
layout() |
static AbstractPackagerMojo.LayoutType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractPackagerMojo.LayoutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractPackagerMojo.LayoutType JAR
public static final AbstractPackagerMojo.LayoutType WAR
public static final AbstractPackagerMojo.LayoutType ZIP
public static final AbstractPackagerMojo.LayoutType DIR
public static final AbstractPackagerMojo.LayoutType NONE
public static AbstractPackagerMojo.LayoutType[] values()
for (AbstractPackagerMojo.LayoutType c : AbstractPackagerMojo.LayoutType.values()) System.out.println(c);
public static AbstractPackagerMojo.LayoutType 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 nullpublic org.springframework.boot.loader.tools.Layout layout()