Package org.jdbi.v3.core.enums


package org.jdbi.v3.core.enums

Configuration and annotations for binding and mapping Java Enum types. Enums can be persisted by name or by ordinal, controlled through the Enums configuration class or the EnumByName and EnumByOrdinal annotations.

  • Class
    Description
    Map a value from the database column directly onto an enum value.
    Specifies that an Enum value should be bound or mapped as its Enum.name().
    Specifies that an Enum value should be bound or mapped as its Enum.ordinal().
    Configuration for behavior related to Enums.