public enum Panel extends Enum<Panel>
| Enum Constant and Description |
|---|
NAVIGATION_PANEL
Navigation panel.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getClosedAttribute()
Getter for closedAttribute.
|
String |
getRegionName()
Getter for regionName.
|
String |
getWindowName()
Getter for windowName.
|
static Panel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Panel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Panel NAVIGATION_PANEL
public static Panel[] values()
for (Panel c : Panel.values()) System.out.println(c);
public static Panel 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 String getRegionName()
public String getWindowName()
public String getClosedAttribute()
Copyright © 2021. All rights reserved.