Module org.jooq
Package org.jooq

Interface FormatterContext

All Superinterfaces:
Scope

public interface FormatterContext extends Scope
The Formatter SPI parameter object.
Author:
Lukas Eder
  • Method Details

    • type

      DataType<?> type()
      The DataType that is being formatted.
    • multiset

      boolean multiset()
      Whether the formatting request is made in a DSL.multiset(TableLike) context.
    • field

      Field<?> field()
      The input expression that is being formatted.
    • field

      void field(Field<?> formatted)
      Pass the formatted output expression to the context.
      Parameters:
      formatted - The output expression.