Interface SpeedRangeTerm

All Superinterfaces:
QueryTerm

public interface SpeedRangeTerm extends QueryTerm

A term for a Speed range query.

  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the end of the Speed range in this term.
    Gets th start of the Speed range in this term.

    Methods inherited from interface QueryTerm

    isPositive, isWildcard
    Modifier and Type
    Method
    Description
    boolean
    Tests if this is a positive or negative term.
    boolean
    Tests if this term is a wildcard.
  • Method Details

    • getSpeedRangeStart

      Speed getSpeedRangeStart()
      Gets th start of the Speed range in this term.
      Returns:
      the speed start
      Throws:
      IllegalStateException - isWildcard() is true
      Compliance:
      mandatory - This method must be implemented.
    • getSpeedRangeEnd

      Speed getSpeedRangeEnd()
      Gets the end of the Speed range in this term.
      Returns:
      the speed end
      Throws:
      IllegalStateException - isWildcard() is true
      Compliance:
      mandatory - This method must be implemented.