public enum AppPaneType extends Enum<AppPaneType>
| Enum Constant and Description |
|---|
CONFIRM |
EDIT_WS |
JVM_OPTIONS |
LIST_WS |
SETTINGS |
| Modifier and Type | Method and Description |
|---|---|
static AppPaneType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppPaneType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppPaneType LIST_WS
public static final AppPaneType EDIT_WS
public static final AppPaneType SETTINGS
public static final AppPaneType JVM_OPTIONS
public static final AppPaneType CONFIRM
public static AppPaneType[] values()
for (AppPaneType c : AppPaneType.values()) System.out.println(c);
public static AppPaneType 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 © 2022 vpc open source initiative. All rights reserved.