Filter Class

A Filter consists of one or more Filter.Items. Each Filter.Item consists of a field/column (e.g. "id"), an operator (e.g. "="), and a value constraint (e.g. "1"). Together, the Items can be joined to generate a "where" clause for a SQL query.

Constructors

There are no public constructors.

Public Methods

set( String col, Object val ) returns void
set( String col, String op, Object val ) returns void
get( String col ) returns javaxt.utils.Value
isEmpty( ) returns boolean
getItems( ) returns Item[]
toJson( ) returns JSONArray

Public Classes