Interface RemoteFormField<T>

Type Parameters:
T - Type of value, see get(), getType(), and validate(Object).
All Superinterfaces:
FormField<T>

public interface RemoteFormField<T> extends FormField<T>
Language specific property container of a form's field. It differs from FormField in thatany method call might result in a RemoteFormData.InaccessibleException, if the remote field is no longer accessible.
Since:
5.0.102
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    Provides the current value of the field.
    Returns the name of the field.
    Get the type of the field's value.
    boolean
    Indicates that the value is set to default.
    boolean
    Indicates that the value of this field is empty.
    boolean
    Indicates that the value of this field is set.
    void
    set(Object value)
    Set the value of this field.
    void
    Set the field to its default value.
    void
    validate(T value)
    Remote validation is not supported, therefore, this method will throw UnsupportedOperationException, always.