Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can restrict the set of values that the end user can provide to the input by using the setMinsetFrom() and setMaxsetTo() methods.

Code Block
languagegroovy
api.inputBuilderFactory()
        .createIntegerUserEntry('NaturalNumber')
        .setFrom(1)
        .setTo(100)
        .getInput()