Interface LimitableParameter

All Superinterfaces:
Displayable, Parameter, SingleParameter
All Known Implementing Classes:
AbstractLimitableParameter, DoubleParameter, FloatParameter, IntegerParameter, LandmarkParameter

public interface LimitableParameter
extends SingleParameter
The value of a LimitableParameter can be limited by giving maximum and minimum values.
Version:
$Revision: 1.5 $
  • Method Details

    • getMax

      Comparable<?> getMax()
      Returns the maximum value for this LimitableParameter.
      Returns:
      the maximum value for this LimitableParameter.
    • getMin

      Comparable<?> getMin()
      Returns the minimum value for this LimitableParameter.
      Returns:
      the minimum value for this LimitableParameter.
    • isValid

      boolean isValid()
      Returns true if the value is between the minimum and the maximum, false otherwise.
      Returns:
      true if the value is between the minimum and the maximum, false otherwise.