public enum SourceMapOutputType extends Enum<SourceMapOutputType>
| Enum Constant and Description |
|---|
file
Just create a source map file named *.map.
|
inline
Inline the content of the source map in the minified file.
|
reference
Create a source map file *.map and add a reference to it in the minified file.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isCreateFile() |
static SourceMapOutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceMapOutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceMapOutputType file
public static final SourceMapOutputType inline
public static final SourceMapOutputType reference
public static SourceMapOutputType[] values()
for (SourceMapOutputType c : SourceMapOutputType.values()) System.out.println(c);
public static SourceMapOutputType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean isCreateFile()
Copyright © 2009–2018 Andre Wachsmuth. All rights reserved.