Uses of Class
org.jdbi.v3.core.enums.EnumStrategy
-
Packages that use EnumStrategy Package Description org.jdbi.v3.core.enums org.jdbi.v3.core.internal Utility classes used internally by Jdbi.org.jdbi.v3.sqlobject.config Thesqlobject.configpackage defines configuration annotations that modify theJdbiconfiguration used as the context for executing SqlObject methods, such as registering handled types. -
-
Uses of EnumStrategy in org.jdbi.v3.core.enums
Fields in org.jdbi.v3.core.enums declared as EnumStrategy Modifier and Type Field Description private EnumStrategyEnums. strategyMethods in org.jdbi.v3.core.enums that return EnumStrategy Modifier and Type Method Description EnumStrategyEnums. getDefaultStrategy()Returns the default strategy to use for mapping and binding enums, in the absence of aEnumByNameorEnumByOrdinalqualifying annotation.static EnumStrategyEnumStrategy. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EnumStrategy[]EnumStrategy. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jdbi.v3.core.enums with parameters of type EnumStrategy Modifier and Type Method Description EnumsEnums. setEnumStrategy(EnumStrategy enumStrategy)Sets the default strategy for mapping and binding enums. -
Uses of EnumStrategy in org.jdbi.v3.core.internal
Methods in org.jdbi.v3.core.internal that return EnumStrategy Modifier and Type Method Description <E extends java.lang.Enum<E>>
EnumStrategyEnumStrategies. findStrategy(QualifiedType<E> type)Determines which strategy is to be used for a givenQualifiedType, falling back to reading strategy annotations on the source class and/or using the configured default.Methods in org.jdbi.v3.core.internal that return types with arguments of type EnumStrategy Modifier and Type Method Description private static <T> java.util.Optional<EnumStrategy>EnumStrategies. doFindStrategy(QualifiedType<T> type) -
Uses of EnumStrategy in org.jdbi.v3.sqlobject.config
Methods in org.jdbi.v3.sqlobject.config that return EnumStrategy Modifier and Type Method Description EnumStrategyvalue()
-