Package net.bytebuddy.description.method
Interface ParameterDescription.ForLoadedParameter.Parameter
- Enclosing class:
- ParameterDescription.ForLoadedParameter<T extends AccessibleObject>
@Proxied("java.lang.reflect.Parameter")
protected static interface ParameterDescription.ForLoadedParameter.Parameter
A proxy for a
java.lang.reflect.Parameter
.-
Method Summary
Modifier and TypeMethodDescriptionint
getModifiers
(Object value) Returns the given parameter's modifiers.Returns the given parameter's implicit or explicit name.boolean
isNamePresent
(Object value) Returnstrue
if the given parameter has an explicit name.
-
Method Details
-
getModifiers
Returns the given parameter's modifiers.- Parameters:
value
- The parameter to introspect.- Returns:
- The parameter's modifiers.
-
isNamePresent
Returnstrue
if the given parameter has an explicit name.- Parameters:
value
- The parameter to introspect.- Returns:
true
if the given parameter has an explicit name.
-
getName
Returns the given parameter's implicit or explicit name.- Parameters:
value
- The parameter to introspect.- Returns:
- The parameter's name.
-