public enum PolymerExportPolicy extends java.lang.Enum<PolymerExportPolicy>
Enum Constant and Description |
---|
EXPORT_ALL
Add all Polymer properties and methods to the externs.
|
LEGACY
If --polymer_version=1, add all Polymer properties (but not methods) to the externs.
|
Modifier and Type | Method and Description |
---|---|
static PolymerExportPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PolymerExportPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolymerExportPolicy LEGACY
public static final PolymerExportPolicy EXPORT_ALL
public static PolymerExportPolicy[] values()
for (PolymerExportPolicy c : PolymerExportPolicy.values()) System.out.println(c);
public static PolymerExportPolicy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2009-2020 Google. All Rights Reserved.