Interface JavadocPackaging

  • All Superinterfaces:
    org.gradle.api.Named

    public interface JavadocPackaging
    extends org.gradle.api.Named
    Indicate the packaging of a Javadoc variant.
    Since:
    2.1.0
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.gradle.api.Named

        org.gradle.api.Named.Namer
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ARCHIVE
      Packaged as an archive, such as a jar.
      static java.lang.String DIRECTORY
      Published as an exploded directory, the original output format.
      static org.gradle.api.attributes.Attribute<JavadocPackaging> JAVADOC_PACKAGING_ATTRIBUTE
      The attribute itself.
    • Method Summary

      • Methods inherited from interface org.gradle.api.Named

        getName
    • Field Detail

      • JAVADOC_PACKAGING_ATTRIBUTE

        static final org.gradle.api.attributes.Attribute<JavadocPackaging> JAVADOC_PACKAGING_ATTRIBUTE
        The attribute itself.
        Since:
        2.1.0
      • ARCHIVE

        static final java.lang.String ARCHIVE
        Packaged as an archive, such as a jar.
        Since:
        2.1.0
        See Also:
        Constant Field Values
      • DIRECTORY

        static final java.lang.String DIRECTORY
        Published as an exploded directory, the original output format.
        Since:
        2.1.0
        See Also:
        Constant Field Values