public static enum LaunchMethod.TYPE extends Enum<LaunchMethod.TYPE>
| Enum Constant and Description |
|---|
DEPENDENCY |
JAVA |
NATIVE |
| Modifier and Type | Method and Description |
|---|---|
static LaunchMethod.TYPE |
fromString(String name) |
Class<? extends LaunchMethod> |
getLauncher() |
static LaunchMethod.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LaunchMethod.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaunchMethod.TYPE DEPENDENCY
public static final LaunchMethod.TYPE NATIVE
public static final LaunchMethod.TYPE JAVA
public static LaunchMethod.TYPE[] values()
for (LaunchMethod.TYPE c : LaunchMethod.TYPE.values()) System.out.println(c);
public static LaunchMethod.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 nullpublic Class<? extends LaunchMethod> getLauncher()
public static LaunchMethod.TYPE fromString(String name)
Copyright © 2015. All rights reserved.