public enum AppSingleton extends Enum<AppSingleton>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
BOManager |
getApp() |
ScriptEngine |
getViewEngine() |
void |
setApp(BOManager app) |
void |
setViewEngine(ScriptEngine viewEngine) |
static AppSingleton |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppSingleton[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppSingleton INSTANCE
public static AppSingleton[] values()
for (AppSingleton c : AppSingleton.values()) System.out.println(c);
public static AppSingleton 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 BOManager getApp()
public void setApp(BOManager app)
public ScriptEngine getViewEngine()
public void setViewEngine(ScriptEngine viewEngine)
Copyright © 2015. All rights reserved.