public static enum CompilerOptions.J2clPassMode extends java.lang.Enum<CompilerOptions.J2clPassMode>
Enum Constant and Description |
---|
AUTO
It auto-detects whether there are J2cl generated file.
|
OFF
J2clPass is disabled.
|
Modifier and Type | Method and Description |
---|---|
static CompilerOptions.J2clPassMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompilerOptions.J2clPassMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerOptions.J2clPassMode OFF
public static final CompilerOptions.J2clPassMode AUTO
public static CompilerOptions.J2clPassMode[] values()
for (CompilerOptions.J2clPassMode c : CompilerOptions.J2clPassMode.values()) System.out.println(c);
public static CompilerOptions.J2clPassMode 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-2018 Google. All Rights Reserved.