Interface EqualityExpressionBuilder

All Known Subinterfaces:
AttributeBuilder, ExpressionBuilder

public interface EqualityExpressionBuilder
Completes the fluent API to create a PropertyIsEqualTo Filter .
Author:
Michael Menousek
  • Method Summary

    Modifier and Type
    Method
    Description
    org.geotools.api.filter.Filter
    bool(boolean arg)
    Completes building the Filter based on a boolean value
    org.geotools.api.filter.Filter
    bytes(byte[] bytes)
    Completes building the Filter based on byte value
    org.geotools.api.filter.Filter
    date(Date date)
    Completes building the Filter based on a Date
    org.geotools.api.filter.Filter
    dateRange(Date begin, Date end)
    Completes building the Filter based on a range defined by two Date instances
    org.geotools.api.filter.Filter
    number(double arg)
    Completes building the Filter based on a double
    org.geotools.api.filter.Filter
    number(float arg)
    Completes building the Filter based on a float
    org.geotools.api.filter.Filter
    number(int arg)
    Completes building the Filter based on a int
    org.geotools.api.filter.Filter
    number(long arg)
    Completes building the Filter based on a long
    org.geotools.api.filter.Filter
    number(short arg)
    Completes building the Filter based on a short
    org.geotools.api.filter.Filter
    text(String text)
    Completes building the Filter based on a text value
    org.geotools.api.filter.Filter
    wkt(String wkt)
    Completes building the Filter based on a WKT shape
  • Method Details

    • number

      org.geotools.api.filter.Filter number(float arg)
      Completes building the Filter based on a float
      Parameters:
      arg - - float argument
      Returns:
      Filter
    • number

      org.geotools.api.filter.Filter number(double arg)
      Completes building the Filter based on a double
      Parameters:
      arg - - double argument
      Returns:
      Filter
    • number

      org.geotools.api.filter.Filter number(int arg)
      Completes building the Filter based on a int
      Parameters:
      arg - - int argument
      Returns:
      Filter
    • number

      org.geotools.api.filter.Filter number(short arg)
      Completes building the Filter based on a short
      Parameters:
      arg - - short argument
      Returns:
      Filter
    • number

      org.geotools.api.filter.Filter number(long arg)
      Completes building the Filter based on a long
      Parameters:
      arg - - long argument
      Returns:
      Filter
    • wkt

      org.geotools.api.filter.Filter wkt(String wkt)
      Completes building the Filter based on a WKT shape
      Parameters:
      wkt - - WKT-defined shape (2D)
      Returns:
      Filter
    • date

      org.geotools.api.filter.Filter date(Date date)
      Completes building the Filter based on a Date
      Parameters:
      date - - Date
      Returns:
      Filter
    • dateRange

      org.geotools.api.filter.Filter dateRange(Date begin, Date end)
      Completes building the Filter based on a range defined by two Date instances
      Parameters:
      begin - - Date defining beginning of the range
      end - - Date defining end of the range
      Returns:
      Filter
    • bool

      org.geotools.api.filter.Filter bool(boolean arg)
      Completes building the Filter based on a boolean value
      Parameters:
      arg - - boolean value to filter on
      Returns:
      Filter
    • bytes

      org.geotools.api.filter.Filter bytes(byte[] bytes)
      Completes building the Filter based on byte value
      Parameters:
      bytes - byte array
      Returns:
      Filter
    • text

      org.geotools.api.filter.Filter text(String text)
      Completes building the Filter based on a text value
      Parameters:
      text - - String argument to filter on
      Returns:
      Filter