Module org.jooq
Package org.jooq.impl

Interface QOM.Translate

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

public static interface QOM.Translate extends Field<String>
The TRANSLATE function.

Translate a set of characters to another set of characters in a string.

  • Method Details

    • $string

      @NotNull @NotNull Field<String> $string()
      The string to translate.
    • $from

      @NotNull @NotNull Field<String> $from()
      The set of source characters.
    • $to

      @NotNull @NotNull Field<String> $to()
      The set of target characters, matched with source characters by position.
    • $string

      @NotNull @NotNull QOM.Translate $string(Field<String> string)
      The string to translate.
    • $from

      @NotNull @NotNull QOM.Translate $from(Field<String> from)
      The set of source characters.
    • $to

      @NotNull @NotNull QOM.Translate $to(Field<String> to)
      The set of target characters, matched with source characters by position.