Enum AccessibleObjectStrategy

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<AccessibleObjectStrategy>, java.util.function.Consumer<java.lang.reflect.AccessibleObject>

    @Alpha
    public enum AccessibleObjectStrategy
    extends java.lang.Enum<AccessibleObjectStrategy>
    implements java.util.function.Consumer<java.lang.reflect.AccessibleObject>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DO_NOT_MAKE_ACCESSIBLE
      Do not make non-public methods and constructors accessible.
      FORCE_MAKE_ACCESSIBLE
      Force non-public methods and constructors to be accessible.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static AccessibleObjectStrategy valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static AccessibleObjectStrategy[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.function.Consumer

        accept, andThen
    • Enum Constant Detail

      • 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.
    • Constructor Detail

      • AccessibleObjectStrategy

        private AccessibleObjectStrategy()
    • Method Detail

      • values

        public static AccessibleObjectStrategy[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AccessibleObjectStrategy c : AccessibleObjectStrategy.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AccessibleObjectStrategy valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null