java.lang.Object
java.lang.Enum<SourceMapOutputType>
com.github.blutorange.maven.plugin.closurecompiler.common.SourceMapOutputType
All Implemented Interfaces:
Serializable, Comparable<SourceMapOutputType>, java.lang.constant.Constable

public enum SourceMapOutputType extends Enum<SourceMapOutputType>
  • Enum Constant Details

    • file

      public static final SourceMapOutputType file
      Just create a source map file named *.map.
    • inline

      public static final SourceMapOutputType inline
      Inline the content of the source map in the minified file.
    • reference

      public static final SourceMapOutputType reference
      Create a source map file *.map and add a reference to it in the minified file.
  • Method Details

    • values

      public static SourceMapOutputType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static SourceMapOutputType valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • isCreateFile

      public boolean isCreateFile()