All Superinterfaces:
Cloneable, Component, DataComponent
All Known Subinterfaces:
AddressField, CodeField, FulltextSearch, GeosearchField, HtmlField, LocationField, RangeField, RemoteField, SelectBox
All Known Implementing Classes:
AddressFieldImpl, CodeFieldImpl, FieldImpl, FulltextSearchImpl, GeosearchFieldImpl, HtmlFieldImpl, LocationFieldImpl, RangeFieldImpl, RemoteFieldImpl, SelectBoxImpl

public interface Field extends DataComponent
A form field which represents a field of an entity model.
  • Method Details

    • getPath

      String getPath()
      The path from the base entity to the field or relation. The base entity is defined in the containing Form component.
    • getDataType

      String getDataType()
      The data type of the field (e.g. date, datetime, string, ...).
    • getDefaultValue

      @Nullable @Nullable DefaultValueDescriptor getDefaultValue()
      Returns:
      the default value for this form component as specified in the form xml.
    • getValidator

      AndGroupValidator getValidator()
    • getAutoCompleteEndpoint

      String getAutoCompleteEndpoint()
    • getSimpleSearch

      boolean getSimpleSearch()
    • accept

      default void accept(ComponentVisitor visitor)
      Description copied from interface: Component
      Implement method (and add new method to ComponentVisitor), if during traversing the form something should happen with this specific component type
      Specified by:
      accept in interface Component