Class SubmissionField

java.lang.Object
formflow.library.pdf.SubmissionField
Direct Known Subclasses:
CheckboxField, DatabaseField, SingleField

public abstract class SubmissionField extends Object
  • Field Details

  • Constructor Details

    • SubmissionField

      public SubmissionField()
  • Method Details

    • getName

      public String getName()
      Returns the name of the field. If the field is part of a subflow, the name will be the field name suffixed with a "_" and iteration number.
      Given this data:
          name = "incomeJob"
          iteration = 2
       
      This method would return: `incomeJob_2`.
      If no iteration value is set, then just the name is returned:
          name = "firstName"
          iteration = null
       
      This method would return: `firstName`
      Returns:
      name of field