public enum ExecutionMode extends Enum<ExecutionMode>
| Modifier and Type | Method and Description |
|---|---|
static void |
clear() |
static ExecutionMode |
get() |
static boolean |
isCompiler() |
static boolean |
isIDE() |
boolean |
isRefreshSupportEnabled() |
static boolean |
isRuntime() |
static ExecutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionMode RUNTIME
public static final ExecutionMode IDE
public static final ExecutionMode COMPILER
public static ExecutionMode[] values()
for (ExecutionMode c : ExecutionMode.values()) System.out.println(c);
public static ExecutionMode 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 nullpublic boolean isRefreshSupportEnabled()
public static ExecutionMode get()
public static void clear()
public static boolean isRuntime()
public static boolean isIDE()
public static boolean isCompiler()
Copyright © 2019. All rights reserved.