public static enum OptionJsInteropMode.Mode extends Enum<OptionJsInteropMode.Mode>
Enum Constant and Description |
---|
CLOSURE
For cases where GWT code is post-optimized and checked with the Closure Compiler.
|
JS
For hand coded, external JS, not run through an external compiler.
|
NONE
Disabled, interop annotations are no-ops.
|
Modifier and Type | Method and Description |
---|---|
static OptionJsInteropMode.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionJsInteropMode.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionJsInteropMode.Mode NONE
public static final OptionJsInteropMode.Mode JS
public static final OptionJsInteropMode.Mode CLOSURE
public static OptionJsInteropMode.Mode[] values()
for (OptionJsInteropMode.Mode c : OptionJsInteropMode.Mode.values()) System.out.println(c);
public static OptionJsInteropMode.Mode 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 © 2018. All rights reserved.