Package org.jdbi.v3.core.mapper.reflect
Enum AccessibleObjectStrategy
- java.lang.Object
-
- java.lang.Enum<AccessibleObjectStrategy>
-
- org.jdbi.v3.core.mapper.reflect.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_ACCESSIBLEDo not make non-public methods and constructors accessible.FORCE_MAKE_ACCESSIBLEForce non-public methods and constructors to be accessible.
-
Constructor Summary
Constructors Modifier Constructor Description privateAccessibleObjectStrategy()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccessibleObjectStrategyvalueOf(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.
-
-
-
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.
-
-
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 namejava.lang.NullPointerException- if the argument is null
-
-