Class FormField
The getFormControls() method can be used to obtain the collection of this field's constituent
FormControl objects.
The FormFields class, which represents a collection of FormField objects, provides the highest level
interface for dealing with form fields and controls. For the most common tasks it can be used directly without
the need to work with its constituent FormField or FormControl objects.
The FormField class serves two main purposes:
-
Provide methods for the modification and retrieval of form control submission values
while ensuring that the states of all the field's constituent form controls remain consistent with each other.
The methods available for this purpose are:
List getValues()
void clearValues()
void setValues(Collection)
boolean setValue(String)
boolean addValue(String)
Although the
FormControlclass provides methods for directly modifying the submission values of individual form controls, it is generally recommended to use the interface provided by theFormFieldsclass unless there is a specific requirement for the lower level functionality. TheFormFieldsclass contains convenience methods providing most of the functionality of the above methods, as well as some higher level functionality such as the ability to set the form submission values as a complete field data set using theFormFields.setDataSet(Map)method. -
Provide a means of determining the data structure of the field, allowing a server receiving a
submitted
form data set
to interpret and store the data in an appropriate way.
The properties available for this purpose are:
boolean allowsMultipleValues()
int getUserValueCount()
Collection getPredefinedValues()
The
FormFields.getColumnLabels()andFormFields.getColumnValues(Map)methods utilise these properties to convert data from a form data set (represented as a field data set) into a simple array format, suitable for storage in a tabular format such as a database table or.CSVfile.The properties need only be utilised directly in the event that a form data set is to be converted from its normal format into some other type of data structure.
TEXT control.
When a form field consists of more than one control, these controls are normally all
predefined value controls of the same
type, such as CHECKBOX controls.
Form fields consisting of more than one control do not necessarily return multiple values.
A form field consisting of CHECKBOX controls can return multiple values, whereas
a form field consisting of RADIO controls returns at most one value.
The HTML author can disregard convention and mix all types of controls with the same name in the same form,
or include multiple user value controls of the same name.
The evidence that such an unusual combination is present is when getUserValueCount()>1.
FormField instances are created automatically with the creation of a FormFields collection.
The case sensitivity of form field names is determined by the static
Config.CurrentCompatibilityMode.FormFieldNameCaseInsensitive property.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanAdds the specified value to the field submission values of this field.booleanIndicates whether the field allows multiple values.voidClears the submission values of all the constituent form controls in this field.Returns a string representation of this object useful for debugging purposes.Returns the firstFormControlfrom this field.getFormControl(String predefinedValue) Returns the constituentFormControlwith the specified predefined value.Returns a collection of all the constituent form controls in this field.getName()Returns the control name shared by all of this field's constituent controls.Returns a collection of the predefined values of all constituent controls in this field.intReturns the number of constituent user value controls in this field.Returns a list of the field submission values in order of appearance.booleanSets the field submission values of this field to the single specified value.voidsetValues(Collection<String> values) Sets the field submission values of this field to the specified values.toString()Returns a string representation of this object useful for debugging purposes.
-
Method Details
-
getName
Returns the control name shared by all of this field's constituent controls.If the static
Config.CurrentCompatibilityMode.isFormFieldNameCaseInsensitive()property is set totrue, the grouping of the controls by name is case insensitive and this method always returns the name in lower case.Since a form field is simply a group of controls with the same name, the terms control name and field name are for the most part synonymous, with only a possible difference in case differentiating them.
- Returns:
- the control name shared by all of this field's constituent controls.
- See Also:
-
getFormControls
Returns a collection of all the constituent form controls in this field.An iterator over this collection returns the controls in the order of appearance in the source.
- Returns:
- a collection of all the constituent form controls in this field.
- See Also:
-
getFormControl
Returns the constituentFormControlwith the specified predefined value.Specifying a predefined value of
nullreturns the first control without a predefined value.- Parameters:
predefinedValue- the predefined value of the control to be returned, ornullto return the first control without a predefined value.- Returns:
- the constituent
FormControlwith the specified predefined value, ornullif none exists. - See Also:
-
getFormControl
Returns the firstFormControlfrom this field.- Returns:
- the first
FormControlfrom this field, guaranteed notnull. - See Also:
-
allowsMultipleValues
public boolean allowsMultipleValues()Indicates whether the field allows multiple values.Returns
falsein any one of the following circumstances:- The field consists of only one control (unless it is a multiple select with more than one option)
- The field consists entirely of radio buttons
- The field consists entirely of submit buttons
true.- Returns:
trueif the field allows multiple values, otherwisefalse.
-
getUserValueCount
public int getUserValueCount()Returns the number of constituent user value controls in this field. This should in most cases be either0or1.A value of
0indicates the field values consist only of predefined values, which is the case when the field consists only of predefined value controls.A value of
1indicates the field values consist of at most one value set by the user. It is still possible in this case to receive multiple values in the unlikely event that the HTML author mixed controls of different types with the same name, but any other values would consist only of predefined values.A value greater than
1indicates that the HTML author has included more than one user value control with the same name. This would nearly always indicate an unintentional error in the HTML source document, in which case your application can either log a warning that a poorly designed form has been encountered, or take special action to try to interpret the multiple user values that might be submitted.- Returns:
- the number of constituent user value controls in this field.
-
getPredefinedValues
Returns a collection of the predefined values of all constituent controls in this field.All objects in the returned collection are of type
String, with nonullentries.An interator over this collection returns the values in the order of appearance in the source document.
- Returns:
- a collection of the predefined values of all constituent controls in this field, or
nullif none. - See Also:
-
getValues
Returns a list of the field submission values in order of appearance.The term field submission values is used in this library to refer to the aggregate of all the submission values of a field's constituent form controls.
All objects in the returned list are of type
String, with nonullentries.The list may contain duplicates if the this field has multiple controls with the same value.
- Returns:
- a list of the field submission values in order of appearance, guaranteed not
null.
-
clearValues
public void clearValues()Clears the submission values of all the constituent form controls in this field.- See Also:
-
setValues
Sets the field submission values of this field to the specified values.This is equivalent to calling
clearValues()followed byaddValue(value)for each value in the specified collection.The specified collection must not contain any
nullvalues.- Parameters:
values- the new field submission values of this field.- See Also:
-
setValue
Sets the field submission values of this field to the single specified value.This is equivalent to calling
clearValues()followed byaddValue(value).The return value indicates whether any of the constituent form controls "accepted" the value. A return value of
falseimplies an error condition as the specified value is not compatible with this field.Specifying a
nullvalue is equivalent to callingclearValues()alone, and always returnstrue.See the
addValue(String value)method for more information.- Parameters:
value- the new field submission value of this field, ornullto clear the field of all submission values.- Returns:
trueif one of the constituent form controls accepts the value, otherwisefalse.- See Also:
-
addValue
Adds the specified value to the field submission values of this field.This is achieved internally by attempting to add the value to every constituent form control until one "accepts" it.
The return value indicates whether any of the constituent form controls accepted the value. A return value of
falseimplies an error condition as the specified value is not compatible with this field.In the unusual case that this field consists of multiple form controls, but not all of them are predefined value controls, priority is given to the predefined value controls before attempting to add the value to the user value controls.
- Parameters:
value- the new field submission value to add to this field, must not benull.- Returns:
trueif one of the constituent form controls accepts the value, otherwisefalse.
-
getDebugInfo
Returns a string representation of this object useful for debugging purposes.- Returns:
- a string representation of this object useful for debugging purposes.
-
toString
Returns a string representation of this object useful for debugging purposes.This is equivalent to
getDebugInfo().
-