Enum AccessibleObjectStrategy
- All Implemented Interfaces:
Serializable
,Comparable<AccessibleObjectStrategy>
,Consumer<AccessibleObject>
@Alpha
public enum AccessibleObjectStrategy
extends Enum<AccessibleObjectStrategy>
implements Consumer<AccessibleObject>
-
Enum Constant Summary
Enum ConstantDescriptionDo not make non-public methods and constructors accessible.Force non-public methods and constructors to be accessible. -
Method Summary
Modifier and TypeMethodDescriptionstatic AccessibleObjectStrategy
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 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-