Class JRSqlLessOrGreaterClause

  • All Implemented Interfaces:
    JRClauseFunction

    public class JRSqlLessOrGreaterClause
    extends SQLLessOrGreaterBaseClause
    Base LESS/GREATER clause function for SQL queries.

    The first token in the $X{...} syntax is the function ID token. Possible values for the LESS | GREATER clause function ID token are:

    • LESS - in this case the LESS THAN operator < will be applied.
    • LESS] - in this case the LESS OR EQUAL operator <= will be applied.
    • GREATER - in this case the GREATER THAN operator > will be applied.
    • [GREATER - in this case the GREATER OR EQUAL operator >= will be applied.

    Author:
    Sanda Zaharia (shertage@users.sourceforge.net)