Enum Class TabCycle
- All Implemented Interfaces:
Serializable,Comparable<TabCycle>,Constable
Specifies how the consumer responds when the user presses the TAB key in the controls in a form. The behavior of the consumer depends on whether the form is bound to a data source.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf a user presses the TAB key in the last control of the form, the focus moves to the first control specified in the tab order of the same form.NoneIf a user presses the TAB key in the last control of the form, the focus moves to the first control specified in the tab order for the next form.If a user presses the TAB key in the last control of the form, the focus moves to the first control specified in the tab order of the same form. -
Method Summary
-
Enum Constant Details
-
RECORDS
If a user presses the TAB key in the last control of the form, the focus moves to the first control specified in the tab order of the same form. -
CURRENT
If a user presses the TAB key in the last control of the form, the focus moves to the first control specified in the tab order of the same form. -
PAGE
If a user presses the TAB key in the last control of the form, the focus moves to the first control specified in the tab order for the next form. -
NONE
None
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-