Interface JooqArgumentParser

All Superinterfaces:
ArgumentParser

public interface JooqArgumentParser extends ArgumentParser
The interface Argument parser.
Since:
1.0.0
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final JooqArgumentParser
    The constant DEFAULT.
  • Method Summary

    Modifier and Type
    Method
    Description
    default List<?>
    parse(@NotNull org.jooq.Field field, @NotNull List<String> values)
    Parse list argument values.
    default Object
    parse(@NotNull org.jooq.Field field, String value)
    Parse one argument value.
  • Field Details

  • Method Details

    • parse

      default Object parse(@NotNull @NotNull org.jooq.Field field, String value)
      Parse one argument value.
      Parameters:
      field - the database field
      value - the argument value
      Returns:
      the database value
      Since:
      1.0.0
      See Also:
      • Field
    • parse

      default List<?> parse(@NotNull @NotNull org.jooq.Field field, @NotNull @NotNull List<String> values)
      Parse list argument values.
      Parameters:
      field - the database field
      values - the argument values
      Returns:
      the database values
      Since:
      1.0.0
      See Also:
      • Field