Module org.jooq
Package org.jooq

Interface JSONEntryValueStep


public interface JSONEntryValueStep
A step in the creation of JSONEntry values.
Author:
Lukas Eder
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> @NotNull JSONEntry<T>
    value​(Field<T> value)
    The JSON entry value.
    <T> @NotNull JSONEntry<T>
    value​(Select<? extends Record1<T>> value)
    The JSON entry value.
    <T> @NotNull JSONEntry<T>
    value​(T value)
    The JSON entry value.
  • Method Details

    • value

      @NotNull <T> @NotNull JSONEntry<T> value(T value)
      The JSON entry value.
    • value

      @NotNull <T> @NotNull JSONEntry<T> value(Field<T> value)
      The JSON entry value.
    • value

      @NotNull <T> @NotNull JSONEntry<T> value(Select<? extends Record1<T>> value)
      The JSON entry value.