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