Enum Artifact
- java.lang.Object
-
- java.lang.Enum<Artifact>
-
- com.ss.android.ugc.bytex.gradletoolkit.Artifact
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AARALL_CLASSESAPKCLASSESJARJAVACMERGED_ASSETSMERGED_MANIFESTSMERGED_MANIFESTS_WITH_FEATURESMERGED_RESPROCESSED_JARDeprecated.PROCESSED_RESRAW_ASSET_SETSRAW_RESOURCE_SETSSYMBOL_LISTSYMBOL_LIST_WITH_PACKAGE_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArtifactvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Artifact[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AAR
public static final Artifact AAR
-
ALL_CLASSES
public static final Artifact ALL_CLASSES
-
APK
public static final Artifact APK
-
JAR
public static final Artifact JAR
-
PROCESSED_JAR
@Deprecated public static final Artifact PROCESSED_JAR
Deprecated.
-
CLASSES
public static final Artifact CLASSES
-
JAVAC
public static final Artifact JAVAC
-
MERGED_ASSETS
public static final Artifact MERGED_ASSETS
-
MERGED_RES
public static final Artifact MERGED_RES
-
MERGED_MANIFESTS
public static final Artifact MERGED_MANIFESTS
-
MERGED_MANIFESTS_WITH_FEATURES
public static final Artifact MERGED_MANIFESTS_WITH_FEATURES
-
PROCESSED_RES
public static final Artifact PROCESSED_RES
-
SYMBOL_LIST
public static final Artifact SYMBOL_LIST
-
SYMBOL_LIST_WITH_PACKAGE_NAME
public static final Artifact SYMBOL_LIST_WITH_PACKAGE_NAME
-
RAW_RESOURCE_SETS
public static final Artifact RAW_RESOURCE_SETS
-
RAW_ASSET_SETS
public static final Artifact RAW_ASSET_SETS
-
-
Method Detail
-
values
public static Artifact[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Artifact c : Artifact.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Artifact valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-