public enum FieldFocusPriority extends Enum<FieldFocusPriority>
Enum Constant and Description |
---|
IN_ERROR
A field that contains a validation error, the highest normal priority.
|
OPTIONAL
An optional field, the lowest priority.
|
OVERRIDE
Used to allow field focus to be manually overridden; this would be selected in user code and is higher priority
than
IN_ERROR . |
REQUIRED
A field whose input is required, which takes higher priority than optional.
|
Modifier and Type | Method and Description |
---|---|
static FieldFocusPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldFocusPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldFocusPriority OPTIONAL
public static final FieldFocusPriority REQUIRED
public static final FieldFocusPriority IN_ERROR
public static final FieldFocusPriority OVERRIDE
IN_ERROR
.FormFieldFocus
public static FieldFocusPriority[] values()
for (FieldFocusPriority c : FieldFocusPriority.values()) System.out.println(c);
public static FieldFocusPriority 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 null5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.