public enum CompileAgainstLibraryType extends Enum<CompileAgainstLibraryType>
Enum Constant and Description |
---|
ABI
Compile against the ABI jar.
|
FULL
Compile against the full jar.
|
SOURCE_ONLY_ABI
Compile against the source-only ABI jar, if available.
|
Modifier and Type | Method and Description |
---|---|
static CompileAgainstLibraryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompileAgainstLibraryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompileAgainstLibraryType FULL
public static final CompileAgainstLibraryType ABI
public static final CompileAgainstLibraryType SOURCE_ONLY_ABI
public static CompileAgainstLibraryType[] values()
for (CompileAgainstLibraryType c : CompileAgainstLibraryType.values()) System.out.println(c);
public static CompileAgainstLibraryType 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 null