| Package | Description |
|---|---|
| org.bridje.sql | |
| org.bridje.sql.impl |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BooleanColumn<T,E>
Represents a boolean column.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanExpr<T,E> |
BooleanExpr.and(BooleanExpr<T,E> operand)
Creates a new boolean expression that performs the logical and of this
expresion with the given one.
|
BooleanExpr<T,E> |
BooleanExpr.and(T operand)
Creates a new boolean expression that performs the logical and of this
expresion with the given one.
|
static <T> BooleanExpr<T,T> |
SQL.bool(T value)
Creates a new literal.
|
BooleanExpr<Boolean,Boolean> |
Expression.eq(Expression<T,E> operand)
Creates a new boolean expression that performs the equals comparation of
this expression with the given one.
|
BooleanExpr<Boolean,Boolean> |
Expression.eq(T operand)
Creates a new boolean expression that performs the equals comparation of
this expression with the given operand.
|
BooleanExpr<Boolean,Boolean> |
ArithmeticExpr.ge(ArithmeticExpr<T,E> operand)
Creates a new boolean expression that performs the grather or equals to comparation
of this expresion with the given one.
|
BooleanExpr<Boolean,Boolean> |
DateExpr.ge(DateExpr<T,E> operand)
Creates a new boolean expression that performs the grather or equals to comparation
of this expresion with the given one.
|
BooleanExpr<Boolean,Boolean> |
ArithmeticExpr.gt(ArithmeticExpr<T,E> operand)
Creates a new boolean expression that performs the grather than comparation
of this expresion with the given one.
|
BooleanExpr<Boolean,Boolean> |
DateExpr.gt(DateExpr<T,E> operand)
Creates a new boolean expression that performs the grather than comparation
of this expresion with the given one.
|
BooleanExpr<Boolean,Boolean> |
Expression.in(ArrayExpr<T,E> array)
Creates a new boolean expression that performs the "in" search of this
expression with in the given array.
|
BooleanExpr<Boolean,Boolean> |
Expression.isNull()
Creates a new boolean expression that performs the "is null" comparation
for this expression.
|
BooleanExpr<Boolean,Boolean> |
ArithmeticExpr.le(ArithmeticExpr<T,E> operand)
Creates a new boolean expression that performs the less or equals to comparation
of this expresion with the given one.
|
BooleanExpr<Boolean,Boolean> |
DateExpr.le(DateExpr<T,E> operand)
Creates a new boolean expression that performs the less or equals to comparation
of this expresion with the given one.
|
BooleanExpr<Boolean,Boolean> |
StringExpr.like(String value)
Creates a new boolean expression that performs the LIKE comparison of
this expression with the given one.
|
BooleanExpr<Boolean,Boolean> |
StringExpr.like(StringExpr<?,?> stringExpr)
Creates a new boolean expression that performs the LIKE comparison of
this expression with the given one.
|
BooleanExpr<Boolean,Boolean> |
ArithmeticExpr.lt(ArithmeticExpr<T,E> operand)
Creates a new boolean expression that performs the less than comparation
of this expresion with the given one.
|
BooleanExpr<Boolean,Boolean> |
DateExpr.lt(DateExpr<T,E> operand)
Creates a new boolean expression that performs the less than comparation
of this expresion with the given one.
|
BooleanExpr<Boolean,Boolean> |
Expression.ne(Expression<T,E> operand)
Creates a new boolean expression that performs the non equals comparation
of this expression with the given one.
|
BooleanExpr<Boolean,Boolean> |
Expression.ne(T operand)
Creates a new boolean expression that performs the non equals comparation
of this expression with the given operand.
|
BooleanExpr<T,E> |
BooleanExpr.not()
Creates a new boolean expression that performs the logical not for this
expresion.
|
BooleanExpr<T,E> |
BooleanExpr.or(BooleanExpr<T,E> operand)
Creates a new boolean expression that performs the logical or of this
expresion with the given one.
|
BooleanExpr<T,E> |
BooleanExpr.or(T operand)
Creates a new boolean expression that performs the logical or of this
expresion with the given one.
|
static BooleanExpr<Boolean,Boolean> |
SQL.val(boolean value)
Creates a new literal.
|
static BooleanExpr<Boolean,Boolean> |
SQL.val(Boolean value)
Creates a new literal.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanExpr<T,E> |
BooleanExpr.and(BooleanExpr<T,E> operand)
Creates a new boolean expression that performs the logical and of this
expresion with the given one.
|
SelectLimitStep |
GroupByStep.having(BooleanExpr<?,?> condition)
Adds a having statement to this query.
|
UpdateStep |
UpdateStep.innerJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a INNER JOIN statement for this query.
|
FromStep |
FromStep.innerJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a INNER JOIN statement for this query.
|
DeleteFromStep |
DeleteFromStep.innerJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a INNER JOIN statement for this query.
|
UpdateStep |
UpdateStep.leftJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a LEFT JOIN statement for this query.
|
FromStep |
FromStep.leftJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a LEFT JOIN statement for this query.
|
DeleteFromStep |
DeleteFromStep.leftJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a LEFT JOIN statement for this query.
|
BooleanExpr<T,E> |
BooleanExpr.or(BooleanExpr<T,E> operand)
Creates a new boolean expression that performs the logical or of this
expresion with the given one.
|
UpdateStep |
UpdateStep.rightJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a RIGHT JOIN statement for this query.
|
FromStep |
FromStep.rightJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a RIGHT JOIN statement for this query.
|
DeleteFromStep |
DeleteFromStep.rightJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a RIGHT JOIN statement for this query.
|
UpdateWhereStep |
SetsStep.where(BooleanExpr<?,?> condition)
Adds a WHERE statement to the query.
|
SelectWhereStep |
FromStep.where(BooleanExpr<?,?> condition)
Adds a WHERE statement to the query.
|
DeleteWhereStep |
DeleteFromStep.where(BooleanExpr<?,?> condition)
Adds a WHERE statement to the query.
|
| Modifier and Type | Method and Description |
|---|---|
<T,E> BooleanExpr<T,E> |
SQLFactory.bool(T value) |
BooleanExpr<Boolean,Boolean> |
SQLFactory.val(boolean value) |
BooleanExpr<Boolean,Boolean> |
SQLFactory.val(Boolean value) |
Copyright © 2015–2018 Bridje Framework. All rights reserved.