Interface OperationParameter


public interface OperationParameter
A single operation parameter.
Since:
2.0.0
Author:
Phillip Webb
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the parameter name.
    Returns the parameter type.
    boolean
    Return if the parameter is mandatory (does not accept null values).
  • Method Details

    • getName

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

      Class<?> getType()
      Returns the parameter type.
      Returns:
      the type
    • isMandatory

      boolean isMandatory()
      Return if the parameter is mandatory (does not accept null values).
      Returns:
      if the parameter is mandatory