public enum Panel extends Enum<Panel> implements Serializable
| Enum Constant and Description |
|---|
DEVICE |
DOCKED |
GROUP |
ICON |
ICONIZED |
INPUT_BLOCKED |
LAST_DESELECTED |
LOCATION |
MAXIMIZED |
ON_CLOSE |
ON_EDIT |
ON_SAVE_AS |
OPEN |
SELECTED |
SIZE |
TITLE |
TYPE |
| Modifier and Type | Method and Description |
|---|---|
void |
checkValue(Object value) |
static void |
checkValue(Object key,
Object value) |
static Panel |
getKey(Object key) |
Class<?> |
getType() |
boolean |
isValueValid(Object value) |
static boolean |
isValueValid(Object key,
Object value) |
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 TYPE
public static final Panel GROUP
public static final Panel TITLE
public static final Panel ICON
public static final Panel OPEN
public static final Panel SELECTED
public static final Panel ICONIZED
public static final Panel DOCKED
public static final Panel SIZE
public static final Panel LOCATION
public static final Panel DEVICE
public static final Panel MAXIMIZED
public static final Panel LAST_DESELECTED
public static final Panel ON_SAVE_AS
public static final Panel ON_EDIT
public static final Panel ON_CLOSE
public static final Panel INPUT_BLOCKED
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 Class<?> getType()
public boolean isValueValid(Object value)
public void checkValue(Object value)
Copyright © 2023 LSST. All rights reserved.