Package | Description |
---|---|
org.clazzes.util.sql.criteria |
Modifier and Type | Class and Description |
---|---|
class |
SQLCondition
A convenience class for wrapping condition testing for sql statement generation
|
class |
SQLConstruct
A convenience class to aid the creation of complex sql statements by wrapping
SQLFragment s |
class |
SQLOrder |
class |
SQLValue
A convenience class for wrapping column information and placeholder values for SQL statement generation
|
Modifier and Type | Method and Description |
---|---|
static SQLCondition |
SQLCondition.and(SQLFragment... operands) |
protected static SQLCondition |
SQLCondition.and(SQLFragment operand1,
SQLFragment operand2) |
static SQLConstruct |
SQLConstruct.commaParenthesis(SQLFragment... contents) |
static SQLConstruct |
SQLConstruct.commaSeperated(SQLFragment... contents) |
static SQLCondition |
SQLCondition.eq(SQLFragment operand1,
SQLFragment operand2) |
static SQLOrder |
SQLOrder.forFragment(SQLFragment fragment,
SQLOrder.OrderDirection order) |
static SQLCondition |
SQLCondition.gt(SQLFragment operand1,
SQLFragment operand2) |
static SQLCondition |
SQLCondition.gtEquals(SQLFragment operand1,
SQLFragment operand2) |
static SQLCondition |
SQLCondition.in(SQLFragment operand1,
SQLFragment operand2) |
static SQLCondition |
SQLCondition.isNull(SQLFragment operand1) |
static SQLCondition |
SQLCondition.like(SQLFragment operand1,
SQLFragment operand2) |
static SQLCondition |
SQLCondition.lt(SQLFragment operand1,
SQLFragment operand2) |
static SQLCondition |
SQLCondition.ltEquals(SQLFragment operand1,
SQLFragment operand2) |
static SQLCondition |
SQLCondition.notEq(SQLFragment operand1,
SQLFragment operand2) |
static SQLCondition |
SQLCondition.notLike(SQLFragment operand1,
SQLFragment operand2) |
static SQLCondition |
SQLCondition.notNull(SQLFragment operand1) |
static SQLCondition |
SQLCondition.or(SQLFragment... operands) |
protected static SQLCondition |
SQLCondition.or(SQLFragment operand1,
SQLFragment operand2) |
static SQLConstruct |
SQLConstruct.parenthesis(SQLFragment... contents) |
Constructor and Description |
---|
SQLCondition(org.clazzes.util.sql.criteria.SQLCondition.OperationType op,
SQLFragment left,
SQLFragment right) |
SQLConstruct(SQLConstruct.ConstructType type,
SQLConstruct.LinkType link,
SQLFragment... contents) |
SQLOrder(SQLFragment fragment,
SQLOrder.OrderDirection order) |
Copyright © 2017 Clazzes.org. All rights reserved.