Module org.jooq
Package org.jooq.impl

Interface QOM.Repeat

All Superinterfaces:
Field<String>, FieldOrConstraint, FieldOrRow, FieldOrRowOrSelect, GroupField, Named, OrderField<String>, QueryPart, SelectField<String>, SelectFieldOrAsterisk, Serializable, TableElement, Typed<String>
Enclosing class:
QOM

public static interface QOM.Repeat extends Field<String>
The REPEAT function.

Repeat a string a number of times.

  • Method Details

    • $string

      @NotNull @NotNull Field<String> $string()
      The string to be repeated.
    • $count

      @NotNull @NotNull Field<? extends Number> $count()
      The number of times to repeat the string.
    • $string

      @NotNull @NotNull QOM.Repeat $string(Field<String> string)
      The string to be repeated.
    • $count

      @NotNull @NotNull QOM.Repeat $count(Field<? extends Number> count)
      The number of times to repeat the string.