public enum ErrorPanelLocationEnum extends Enum<ErrorPanelLocationEnum>
| 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 ErrorPanelLocationEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorPanelLocationEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorPanelLocationEnum TOP
public static final ErrorPanelLocationEnum BOTTOM
public static final ErrorPanelLocationEnum LEFT
public static final ErrorPanelLocationEnum RIGHT
public static ErrorPanelLocationEnum[] values()
for (ErrorPanelLocationEnum c : ErrorPanelLocationEnum.values()) System.out.println(c);
public static ErrorPanelLocationEnum 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–2016. All rights reserved.