Enum AccessibleObjectStrategy

java.lang.Object
java.lang.Enum<AccessibleObjectStrategy>
org.jdbi.v3.core.mapper.reflect.AccessibleObjectStrategy
All Implemented Interfaces:
Serializable, Comparable<AccessibleObjectStrategy>, Consumer<AccessibleObject>

@Alpha public enum AccessibleObjectStrategy extends Enum<AccessibleObjectStrategy> implements Consumer<AccessibleObject>
  • Enum Constant Details

    • FORCE_MAKE_ACCESSIBLE

      public static final AccessibleObjectStrategy FORCE_MAKE_ACCESSIBLE
      Force non-public methods and constructors to be accessible. Doing this has been discouraged since Java 9 and will be removed in a future Java version. While this is the current default behavior of Jdbi, it will change in the near future due to these changes in the Java platform.
    • DO_NOT_MAKE_ACCESSIBLE

      public static final AccessibleObjectStrategy DO_NOT_MAKE_ACCESSIBLE
      Do not make non-public methods and constructors accessible.
  • Method Details

    • values

      public static AccessibleObjectStrategy[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static AccessibleObjectStrategy valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null