| Package | Description |
|---|---|
| org.bridje.sql | |
| org.bridje.sql.impl |
| Modifier and Type | Interface and Description |
|---|---|
interface |
NumberColumn<T,E> |
| Modifier and Type | Method and Description |
|---|---|
static ArithmeticExpr<Integer,Integer> |
SQL.count()
Creates a new count all expression.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.div(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the division of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.div(T operand)
Creates a new arithmetic expression that performs the division of this
expresion with the given one.
|
ArithmeticExpr<Integer,Integer> |
StringExpr.length()
Gets the length of the string as a number expression.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.minus(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the substraction of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.minus(T operand)
Creates a new arithmetic expression that performs the substraction of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.mod(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the modulus of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.mod(T operand)
Creates a new arithmetic expression that performs the modulus of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.mul(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the multiplication of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.mul(T operand)
Creates a new arithmetic expression that performs the multiplication of this
expresion with the given one.
|
static <T,E> ArithmeticExpr<T,E> |
SQL.number(T value)
Creates a new literal.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.plus(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the addition of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.plus(T operand)
Creates a new arithmetic expression that performs the addition of this
expresion with the given one.
|
static ArithmeticExpr<Byte,Byte> |
SQL.val(byte value)
Creates a new literal.
|
static ArithmeticExpr<Byte,Byte> |
SQL.val(Byte value)
Creates a new literal.
|
static ArithmeticExpr<Double,Double> |
SQL.val(double value)
Creates a new literal.
|
static ArithmeticExpr<Double,Double> |
SQL.val(Double value)
Creates a new literal.
|
static ArithmeticExpr<Float,Float> |
SQL.val(float value)
Creates a new literal.
|
static ArithmeticExpr<Float,Float> |
SQL.val(Float value)
Creates a new literal.
|
static ArithmeticExpr<Integer,Integer> |
SQL.val(int value)
Creates a new literal.
|
static ArithmeticExpr<Integer,Integer> |
SQL.val(Integer value)
Creates a new literal.
|
static ArithmeticExpr<Long,Long> |
SQL.val(long value)
Creates a new literal.
|
static ArithmeticExpr<Long,Long> |
SQL.val(Long value)
Creates a new literal.
|
static ArithmeticExpr<Number,Number> |
SQL.val(Number value)
Creates a new literal.
|
static ArithmeticExpr<Short,Short> |
SQL.val(short value)
Creates a new literal.
|
static ArithmeticExpr<Short,Short> |
SQL.val(Short value)
Creates a new literal.
|
| Modifier and Type | Method and Description |
|---|---|
ArithmeticExpr<T,E> |
ArithmeticExpr.div(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the division of this
expresion with the given one.
|
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> |
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> |
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> |
ArithmeticExpr.lt(ArithmeticExpr<T,E> operand)
Creates a new boolean expression that performs the less than comparation
of this expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.minus(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the substraction of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.mod(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the modulus of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.mul(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the multiplication of this
expresion with the given one.
|
ArithmeticExpr<T,E> |
ArithmeticExpr.plus(ArithmeticExpr<T,E> operand)
Creates a new arithmetic expression that performs the addition of this
expresion with the given one.
|
| Modifier and Type | Method and Description |
|---|---|
ArithmeticExpr<Integer,Integer> |
SQLFactory.count() |
<T,E> ArithmeticExpr<T,E> |
SQLFactory.number(T value) |
ArithmeticExpr<Byte,Byte> |
SQLFactory.val(byte value) |
ArithmeticExpr<Byte,Byte> |
SQLFactory.val(Byte value) |
ArithmeticExpr<Double,Double> |
SQLFactory.val(double value) |
ArithmeticExpr<Double,Double> |
SQLFactory.val(Double value) |
ArithmeticExpr<Float,Float> |
SQLFactory.val(float value) |
ArithmeticExpr<Float,Float> |
SQLFactory.val(Float value) |
ArithmeticExpr<Integer,Integer> |
SQLFactory.val(int value) |
ArithmeticExpr<Integer,Integer> |
SQLFactory.val(Integer value) |
ArithmeticExpr<Long,Long> |
SQLFactory.val(long value) |
ArithmeticExpr<Long,Long> |
SQLFactory.val(Long value) |
ArithmeticExpr<Number,Number> |
SQLFactory.val(Number value) |
ArithmeticExpr<Short,Short> |
SQLFactory.val(short value) |
ArithmeticExpr<Short,Short> |
SQLFactory.val(Short value) |
Copyright © 2015–2018 Bridje Framework. All rights reserved.