Feature Form Validation Exception
A FieldFormElement value can be invalid in the ways represented by this type's subclasses. These types are returned from methods which validate the value of FieldFormElement.value.
Since
200.4.0
See also
Inheritors
Types
The type of the FormAttachment does not match an allowed AttachmentsFormInputType.
The value cannot be meaningfully coerced to the field type of the field in the table with the name FieldFormElement.fieldName.
A DateTime value is less than the value specified by DateTimePickerFormInput.min.
The number of attachments added exceeds the maximum specified by AttachmentsFormElement.maxAttachmentCount.
The attachment exceeds the maximum duration specified by AudioFormInput.maxDuration or VideoFormInput.maxDuration.
The attachment exceeds the maximum size specified by DocumentFormInput.maxFileSize.
The value is greater than the length specified by TextBoxFormInput.maxLength or TextAreaFormInput.maxLength.
A DateTime value is greater than the value specified by DateTimePickerFormInput.max.
A numeric value is greater than the range specified by FieldFormElement.domain. This error can occur when the domain is a com.arcgismaps.data.RangeDomain, the FieldFormElement.input is a TextBoxFormInput, and the field in the backing table with the name FieldFormElement.fieldName has a numeric field type.
The number of attachments added is less than the minimum specified by AttachmentsFormElement.minAttachmentCount.
The value's length is less than the length specified by TextBoxFormInput.minLength or TextAreaFormInput.minLength.
A numeric value is below the range specified by FieldFormElement.domain. This error can occur when the domain is a com.arcgismaps.data.RangeDomain, the FieldFormElement.input is a TextBoxFormInput, and the field in the backing table with the name FieldFormElement.fieldName has a numeric field type.
This error occurs when attempting to update the value of a FieldFormElement with a non-nullable field to null.
The value is not found in the FieldFormElement.domain. This error can occur when the FieldFormElement.domain is a com.arcgismaps.data.CodedValueDomain, and the FieldFormElement.input is a RadioButtonsFormInput, ComboBoxFormInput, or SwitchFormInput.
The value is null or empty and the value of FieldFormElement.isRequired is true.
An unknown type of validation error was returned from validating a FieldFormElement.value. Inspect the underlying message for more information.
Inherited properties
a Map of Strings containing additional information that this error may be providing; may be empty
an integer error code providing more specific details of the error, see guide doc for error codes.