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 Type
    Method
    Description
    int
    Returns the given parameter's modifiers.
    getName(Object value)
    Returns the given parameter's implicit or explicit name.
    boolean
    Returns true if the given parameter has an explicit name.
  • Method Details

    • getModifiers

      int getModifiers(Object value)
      Returns the given parameter's modifiers.
      Parameters:
      value - The parameter to introspect.
      Returns:
      The parameter's modifiers.
    • isNamePresent

      boolean isNamePresent(Object value)
      Returns true 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

      String getName(Object value)
      Returns the given parameter's implicit or explicit name.
      Parameters:
      value - The parameter to introspect.
      Returns:
      The parameter's name.