Module org.jooq
Package org.jooq.impl

Interface QOM.Rpad

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.Rpad extends Field<String>
The RPAD function.

Right-pad a string with a character (whitespace as default) for a number of times.

  • Method Details

    • $string

      @NotNull @NotNull Field<String> $string()
      The string to be padded.
    • $length

      @NotNull @NotNull Field<? extends Number> $length()
      The maximum length to pad the string to.
    • $character

      @Nullable @Nullable Field<String> $character()
      The padding character, if different from whitespace
    • $string

      @NotNull @NotNull QOM.Rpad $string(Field<String> string)
      The string to be padded.
    • $length

      @NotNull @NotNull QOM.Rpad $length(Field<? extends Number> length)
      The maximum length to pad the string to.
    • $character

      @NotNull @NotNull QOM.Rpad $character(Field<String> character)
      The padding character, if different from whitespace