Modifier and Type | Method and Description |
---|---|
static Form.LabelSide |
Form.LabelSide.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Form.LabelSide[] |
Form.LabelSide.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Form.checkBoxIsChosen(String label,
Form.LabelSide labelSide)
Examines the checkbox with the specified text label and returns true if it is checked, otherwise returns false.
|
Form |
Form.chooseCheckBox(String label,
Form.LabelSide labelSide)
Selects the checkbox with the specified text label.
|
Form |
Form.chooseRadioButton(String label,
Form.LabelSide labelSide)
Selects the radiobutton with the specified text label.
|
boolean |
Form.radioButtonIsChosen(String label,
Form.LabelSide labelSide)
Examines the radiobutton with the specified text label and returns true if it is checked, otherwise returns false.
|
Form |
Form.unchooseCheckBox(String label,
Form.LabelSide labelSide)
Deselects the checkbox with the specified text label.
|
Form |
Form.unchooseRadioButton(String label,
Form.LabelSide labelSide)
Deselects the radiobutton with the specified text label.
|