Interface NumericalRangeExpressionBuilder


public interface NumericalRangeExpressionBuilder
Author:
Michael Menousek
  • Method Summary

    Modifier and Type
    Method
    Description
    org.geotools.api.filter.Filter
    numbers(Double arg0, Double arg1)
    Completes building a Numerical Range Filter, using a range between two numbers of type Double
    org.geotools.api.filter.Filter
    numbers(Float arg0, Float arg1)
    Completes building a Numerical Range Filter, using a range between two numbers of type Float
    org.geotools.api.filter.Filter
    numbers(Integer arg0, Integer arg1)
    Completes building a Numerical Range Filter, using a range between two Integers
    org.geotools.api.filter.Filter
    numbers(Long arg0, Long arg1)
    Completes building a Numerical Range Filter, using a range between two Longs
    org.geotools.api.filter.Filter
    numbers(Short arg0, Short arg1)
    Completes building a Numerical Range Filter, using a range between two numbers of type Short
  • Method Details

    • numbers

      org.geotools.api.filter.Filter numbers(Integer arg0, Integer arg1)
      Completes building a Numerical Range Filter, using a range between two Integers
      Parameters:
      arg0 - the bottom range, inclusive
      arg1 - the top of the range, inclusive
      Returns:
      Filter a filter that will pass only Metacards where the indicated Attribute is within the indicated range
    • numbers

      org.geotools.api.filter.Filter numbers(Long arg0, Long arg1)
      Completes building a Numerical Range Filter, using a range between two Longs
      Parameters:
      arg0 - the bottom range, inclusive
      arg1 - the top of the range, inclusive
      Returns:
      Filter a filter that will pass only Metacards where the indicated Attribute is within the indicated range
    • numbers

      org.geotools.api.filter.Filter numbers(Short arg0, Short arg1)
      Completes building a Numerical Range Filter, using a range between two numbers of type Short
      Parameters:
      arg0 - the bottom range, inclusive
      arg1 - the top of the range, inclusive
      Returns:
      Filter a filter that will pass only Metacards where the indicated Attribute is within the indicated range
    • numbers

      org.geotools.api.filter.Filter numbers(Float arg0, Float arg1)
      Completes building a Numerical Range Filter, using a range between two numbers of type Float
      Parameters:
      arg0 - the bottom range, inclusive
      arg1 - the top of the range, inclusive
      Returns:
      Filter a filter that will pass only Metacards where the indicated Attribute is within the indicated range
    • numbers

      org.geotools.api.filter.Filter numbers(Double arg0, Double arg1)
      Completes building a Numerical Range Filter, using a range between two numbers of type Double
      Parameters:
      arg0 - the bottom range, inclusive
      arg1 - the top of the range, inclusive
      Returns:
      Filter a filter that will pass only Metacards where the indicated Attribute is within the indicated range