Uses of Class
org.apache.commons.validator.Field
-
Packages that use Field Package Description org.apache.commons.validator The Validator package provides validation for JavaBeans based on an xml file. -
-
Uses of Field in org.apache.commons.validator
Fields in org.apache.commons.validator declared as Field Modifier and Type Field Description protected Field
ValidatorResult. field
Field
being validated.Fields in org.apache.commons.validator with type parameters of type Field Modifier and Type Field Description protected java.util.List<Field>
Form. lFields
List ofField
s.Methods in org.apache.commons.validator that return Field Modifier and Type Method Description Field
Form. getField(java.lang.String fieldName)
Returns the Field with the given name or null if this Form has no such field.Field
ValidatorResult. getField()
Returns the Field that was validated.Methods in org.apache.commons.validator that return types with arguments of type Field Modifier and Type Method Description protected java.util.Map<java.lang.String,Field>
Form. getFieldMap()
Returns a Map of String field keys to Field objects.java.util.List<Field>
Form. getFields()
AList
ofField
s is returned as an unmodifiableList
.Methods in org.apache.commons.validator with parameters of type Field Modifier and Type Method Description void
ValidatorResults. add(Field field, java.lang.String validatorName, boolean result)
Add a the result of a validator action.void
ValidatorResults. add(Field field, java.lang.String validatorName, boolean result, java.lang.Object value)
Add a the result of a validator action.void
Form. addField(Field f)
Add aField
to theForm
.Constructors in org.apache.commons.validator with parameters of type Field Constructor Description ValidatorResult(Field field)
Constructs aValidatorResult
with the associated field being validated.
-