Enum Artifact

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Artifact>

    public enum Artifact
    extends java.lang.Enum<Artifact>
    Created by tanlehua on 2019-04-29.
    • Enum Constant Detail

      • ALL_CLASSES

        public static final Artifact ALL_CLASSES
      • 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 name
        java.lang.NullPointerException - if the argument is null