public enum JsInteropMode extends java.lang.Enum<JsInteropMode>
| Enum Constant and Description |
|---|
CLOSURE
GWT 2.7 only
|
JS |
JS_RC
GWT 2.8
|
NONE
GWT 2.7 only
|
| Modifier and Type | Method and Description |
|---|---|
static JsInteropMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JsInteropMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsInteropMode JS
public static final JsInteropMode NONE
public static final JsInteropMode CLOSURE
public static final JsInteropMode JS_RC
public static JsInteropMode[] values()
for (JsInteropMode c : JsInteropMode.values()) System.out.println(c);
public static JsInteropMode 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 null