Uses of Class
com.j256.ormlite.stmt.Where

Packages that use Where
com.j256.ormlite.stmt SQL statement generation and processing. 
 

Uses of Where in com.j256.ormlite.stmt
 

Methods in com.j256.ormlite.stmt that return Where
 Where Where.and()
          AND operation which takes the previous clause and the next clause and AND's them together.
 Where Where.and(Where left, Where right)
          AND operation which takes 2 arguments and AND's them together.
 Where Where.between(String columnName, Object low, Object high)
          Add a BETWEEN clause so the column must be between the low and high parameters.
 Where Where.eq(String columnName, Object value)
          Add a '=' clause so the column must be equal to the value.
 Where Where.ge(String columnName, Object value)
          Add a '>=' clause so the column must be greater-than or equals-to the value.
 Where Where.gt(String columnName, Object value)
          Add a '>' clause so the column must be greater-than the value.
 Where Where.in(String columnName, Iterable<?> objects)
          Add a IN clause so the column must be equal-to one of the objects from the list passed in.
 Where Where.in(String columnName, Object... objects)
          Add a IN clause so the column must be equal-to one of the objects passed in.
 Where Where.isNotNull(String columnName)
          Add a 'IS NOT NULL' clause so the column must not be null.
 Where Where.isNull(String columnName)
          Add a 'IS NULL' clause so the column must be null.
 Where Where.le(String columnName, Object value)
          Add a '<=' clause so the column must be less-than or equals-to the value.
 Where Where.like(String columnName, Object value)
          Add a LIKE clause so the column must be like the value (where you can specify '%' patterns.
 Where Where.lt(String columnName, Object value)
          Add a '<' clause so the column must be less-than the value.
 Where Where.ne(String columnName, Object value)
          Add a '<>' clause so the column must be not-equal-to the value.
 Where Where.not()
          Used to NOT the next clause specified.
 Where Where.not(Where comparison)
          Used to NOT the argument clause specified.
 Where Where.or()
          OR operation which takes the previous clause and the next clause and OR's them together.
 Where Where.or(Where left, Where right)
          OR operation which takes 2 arguments and OR's them together.
 Where QueryBuilder.where()
          Returns a Where object that should be used to add SQL where clauses to the statement.
 

Methods in com.j256.ormlite.stmt with parameters of type Where
 Where Where.and(Where left, Where right)
          AND operation which takes 2 arguments and AND's them together.
 Where Where.not(Where comparison)
          Used to NOT the argument clause specified.
 Where Where.or(Where left, Where right)
          OR operation which takes 2 arguments and OR's them together.
 void QueryBuilder.setWhere(Where where)
          Set the Where object on the query.
 



Copyright © 2010. All Rights Reserved.