public static enum SpringBootPluginExtension.LayoutType extends Enum<SpringBootPluginExtension.LayoutType>
| Enum Constant and Description |
|---|
DIR
Executable expanded archive layout.
|
JAR
Executable JAR layout.
|
MODULE
Deprecated.
as of 1.5 in favor of a custom
LayoutFactory |
NONE
No layout.
|
WAR
Executable WAR layout.
|
ZIP
Executable expanded archive layout.
|
| Modifier and Type | Method and Description |
|---|---|
static SpringBootPluginExtension.LayoutType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpringBootPluginExtension.LayoutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpringBootPluginExtension.LayoutType JAR
public static final SpringBootPluginExtension.LayoutType WAR
public static final SpringBootPluginExtension.LayoutType ZIP
public static final SpringBootPluginExtension.LayoutType DIR
@Deprecated public static final SpringBootPluginExtension.LayoutType MODULE
LayoutFactorypublic static final SpringBootPluginExtension.LayoutType NONE
public static SpringBootPluginExtension.LayoutType[] values()
for (SpringBootPluginExtension.LayoutType c : SpringBootPluginExtension.LayoutType.values()) System.out.println(c);
public static SpringBootPluginExtension.LayoutType 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 © 2017 Pivotal Software, Inc.. All rights reserved.