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 TypeMethodDescriptionintgetModifiers(Object value) Returns the given parameter's modifiers.Returns the given parameter's implicit or explicit name.booleanisNamePresent(Object value) Returnstrueif 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
Returnstrueif the given parameter has an explicit name.- Parameters:
value- The parameter to introspect.- Returns:
trueif 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.
-