@Incubating public enum BuildArtifactType extends java.lang.Enum<BuildArtifactType> implements com.android.build.api.artifact.ArtifactType
| Enum Constant and Description |
|---|
JAVA_COMPILE_CLASSPATH |
JAVAC_CLASSES |
| Modifier and Type | Method and Description |
|---|---|
static BuildArtifactType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BuildArtifactType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildArtifactType JAVAC_CLASSES
public static final BuildArtifactType JAVA_COMPILE_CLASSPATH
public static BuildArtifactType[] values()
for (BuildArtifactType c : BuildArtifactType.values()) System.out.println(c);
public static BuildArtifactType 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