|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FieldFocusPriority>
org.apache.tapestry5.FieldFocusPriority
public enum FieldFocusPriority
Used to determine which field on a page should receive focus, based on its status.
JavaScriptSupport.autofocus(FieldFocusPriority, String)| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final FieldFocusPriority OPTIONAL
public static final FieldFocusPriority REQUIRED
public static final FieldFocusPriority IN_ERROR
public static final FieldFocusPriority OVERRIDE
IN_ERROR.
FormFieldFocus| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||