Enum Class ProxyType
- All Implemented Interfaces:
Serializable, Comparable<ProxyType>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDefault is a JDK dynamic proxy, or potentially a class-based CGLIB proxy when globally configured.Suggest a JDK dynamic proxy implementing all interfaces exposed by the class of the target object.Suggest a class-based CGLIB proxy. -
Method Summary
-
Enum Constant Details
-
DEFAULT
Default is a JDK dynamic proxy, or potentially a class-based CGLIB proxy when globally configured. -
INTERFACES
Suggest a JDK dynamic proxy implementing all interfaces exposed by the class of the target object. Overrides a globally configured default. -
TARGET_CLASS
Suggest a class-based CGLIB proxy. Overrides a globally configured default.
-
-
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
-