public enum PanelLocationEnum extends Enum<PanelLocationEnum>
| Enum Constant and Description |
|---|
BOTTOM
display error panel under the field.
|
LEFT
display error panel left of the field.
|
RIGHT
display error panel right of the field.
|
TOP
display error panel on top of the field.
|
| Modifier and Type | Method and Description |
|---|---|
static PanelLocationEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PanelLocationEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PanelLocationEnum TOP
public static final PanelLocationEnum BOTTOM
public static final PanelLocationEnum LEFT
public static final PanelLocationEnum RIGHT
public static PanelLocationEnum[] values()
for (PanelLocationEnum c : PanelLocationEnum.values()) System.out.println(c);
public static PanelLocationEnum 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 © 2015–2019. All rights reserved.