public static enum CliJarLauncher.Type extends Enum<CliJarLauncher.Type>
| Enum Constant and Description |
|---|
SPRINGBOOT |
STANDALONE |
| Modifier and Type | Method and Description |
|---|---|
static CliJarLauncher.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CliJarLauncher.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CliJarLauncher.Type SPRINGBOOT
public static final CliJarLauncher.Type STANDALONE
public static CliJarLauncher.Type[] values()
for (CliJarLauncher.Type c : CliJarLauncher.Type.values()) System.out.println(c);
public static CliJarLauncher.Type 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 © 2021. All rights reserved.