Package com.pspdfkit.forms
Class RadioButtonFormElement
-
- All Implemented Interfaces:
public class RadioButtonFormElement extends EditableButtonFormElement
A single radio button in a radio group represented by RadioButtonFormField.
-
-
Method Summary
Modifier and Type Method Description FormType
getType()
Gets form type for RadioButtonFormElement. RadioButtonFormField
getFormField()
Retrieve parent form field. List<RadioButtonFormElement>
getRadioGroup()
Gets all radio buttons in the radio buttons group. String
getExportValue()
Gets the export value set for this RadioButtonFormElement. -
-
Method Detail
-
getType
@NonNull() FormType getType()
Gets form type for RadioButtonFormElement. See FormType.
- Returns:
Form type for RadioButtonFormElement.
-
getFormField
@NonNull() RadioButtonFormField getFormField()
Retrieve parent form field.
- Returns:
Attached parent form field.
-
getRadioGroup
@NonNull() List<RadioButtonFormElement> getRadioGroup()
Gets all radio buttons in the radio buttons group.
- Returns:
List of all radio buttons in the current group.
-
getExportValue
@Nullable() String getExportValue()
Gets the export value set for this RadioButtonFormElement.
- Returns:
The export value or null if it isn't set.
-
-
-
-