Package org.jdbi.v3.core.mapper.reflect
Enum Class AccessibleObjectStrategy
- All Implemented Interfaces:
Serializable,Comparable<AccessibleObjectStrategy>,Constable,Consumer<AccessibleObject>
@Alpha
public enum AccessibleObjectStrategy
extends Enum<AccessibleObjectStrategy>
implements Consumer<AccessibleObject>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDo not make non-public methods and constructors accessible.Force non-public methods and constructors to be accessible. -
Method Summary
Modifier and TypeMethodDescriptionstatic AccessibleObjectStrategyReturns the enum constant of this class with the specified name.static AccessibleObjectStrategy[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
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
Do not make non-public methods and constructors accessible.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-