Interface Bitstring.Bit.Modifier<T>

Enclosing interface:
Bitstring.Bit<T>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Bitstring.Bit.Modifier<T>
Functional interface to obtain information from the PostgreSQL type modifier applied to the type.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a Bit function possibly tailored ("curried") with the values from a PostgreSQL type modifier on the type.
  • Method Details

    • modify

      Bitstring.Bit<T> modify(OptionalInt nBits)
      Returns a Bit function possibly tailored ("curried") with the values from a PostgreSQL type modifier on the type.
      Parameters:
      nBits - for the BIT type, the exact number of bits the value must have; for VARBIT, the maximum. When not specified, the meaning is 1 for BIT, and unlimited for VARBIT.