Interface MethodSignature.Parameter

Enclosing interface:
MethodSignature

public static interface MethodSignature.Parameter
The Parameter interface is designed to hold the information of method Parameter(s). The parameter is defined by his Name which MUST be unique as java does not allow multiple parameters with same names for one method and Type that is associated with parameter.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the parameter name.
    Returns Type that is bounded to parameter name.
  • Method Details

    • getName

      String getName()
      Returns the parameter name.
      Returns:
      the parameter name.
    • getType

      Type getType()
      Returns Type that is bounded to parameter name.
      Returns:
      Type that is bounded to parameter name.