public enum SourceMapFormat extends Enum<SourceMapFormat>
Enum Constant and Description |
---|
DEFAULT
The latest "stable" format
|
V3
V3: A nice compact format
|
Modifier and Type | Method and Description |
---|---|
static SourceMapFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceMapFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceMapFormat DEFAULT
public static final SourceMapFormat V3
public static SourceMapFormat[] values()
for (SourceMapFormat c : SourceMapFormat.values()) System.out.println(c);
public static SourceMapFormat 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 nullCopyright © 2009-2015 Google. All Rights Reserved.