Interface FieldSpec

All Superinterfaces:
Serializable

@Immutable public interface FieldSpec extends Serializable
The definition of a field to be extracted from a form-style Excel, including the column name to assign to the value in the output dataframe and logic for extracting the value.
  • Method Details

    • fieldName

      String fieldName()
      Column name to assign to the value in the output dataframe.
    • valueExtractor

      ValueExtractor valueExtractor()
      Logic for extracting the value of the field.
    • of

      static FieldSpec of(String fieldName, ValueExtractor valueExtractor)