Module org.jooq
Package org.jooq.impl

Interface QOM.Replace

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.Replace extends Field<String>
The REPLACE function.

Replace all occurrences of a substring in another string.

  • Method Details

    • $string

      @NotNull @NotNull Field<String> $string()
      The string in which to replace contents.
    • $search

      @NotNull @NotNull Field<String> $search()
      The substring to search for.
    • $replace

      @Nullable @Nullable Field<String> $replace()
      The replacement for each substring, if not empty.
    • $string

      @NotNull @NotNull QOM.Replace $string(Field<String> string)
      The string in which to replace contents.
    • $search

      @NotNull @NotNull QOM.Replace $search(Field<String> search)
      The substring to search for.
    • $replace

      @NotNull @NotNull QOM.Replace $replace(Field<String> replace)
      The replacement for each substring, if not empty.