SumExpression<T extends num> class
final
- Inheritance
- Available extensions
Properties
Methods
-
add(
Expr< int> other) → Expr<int> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
add(
Expr< double> other) → Expr<double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
addValue(
int other) → Expr< int> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
addValue(
double other) → Expr< double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
asDouble(
) → Expr< double> -
Available on Expr<
Cast as double.int> , provided by the ExpressionInt extension -
asInt(
) → Expr< int> -
Available on Expr<
Cast as integer.double> , provided by the ExpressionDouble extension -
asString(
) → Expr< String> -
Available on Expr<
Cast as string.int> , provided by the ExpressionInt extension -
asString(
) → Expr< String> -
Available on Expr<
Cast as string.double> , provided by the ExpressionDouble extension -
divide(
Expr< int> other) → Expr<double> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
divide(
Expr< double> other) → Expr<double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
divideValue(
int other) → Expr< double> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
divideValue(
double other) → Expr< double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
equals(
Expr< T?> value) → Expr<bool> -
Available on Expr<
Compare this expression toT> , provided by the ExpressionNum extensionvalue
using=
in SQL coalesced toFALSE
. -
equalsValue(
T? value) → Expr< bool> -
Available on Expr<
Compare this expression toT> , provided by the ExpressionNum extensionvalue
using=
in SQL coalesced toFALSE
. -
greaterThan(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
greaterThanOrEqual(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
greaterThanOrEqualValue(
T other) → Expr< bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
greaterThanValue(
T other) → Expr< bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
lessThan(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
lessThanOrEqual(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
lessThanOrEqualValue(
T other) → Expr< bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
lessThanValue(
T other) → Expr< bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
multiply(
Expr< int> other) → Expr<int> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
multiply(
Expr< double> other) → Expr<double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
multiplyValue(
double other) → Expr< double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
multiplyValue(
int other) → Expr< int> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
notEquals(
Expr< T?> value) → Expr<bool> -
Available on Expr<
Compare this expression toT> , provided by the ExpressionNum extensionvalue
using<>
in SQL. -
notEqualsValue(
T? value) → Expr< bool> -
Available on Expr<
Compare this expression toT> , provided by the ExpressionNum extensionvalue
using<>
in SQL. -
subtract(
Expr< int> other) → Expr<int> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
subtract(
Expr< double> other) → Expr<double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
subtractValue(
double other) → Expr< double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
subtractValue(
int other) → Expr< int> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator *(
Expr< double> other) → Expr<double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
operator *(
Expr< int> other) → Expr<int> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
operator +(
Expr< double> other) → Expr<double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
operator +(
Expr< int> other) → Expr<int> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
operator -(
Expr< double> other) → Expr<double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
operator -(
Expr< int> other) → Expr<int> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
operator /(
Expr< double> other) → Expr<double> -
Available on Expr<
Add this expression todouble> , provided by the ExpressionDouble extensionother
. -
operator /(
Expr< int> other) → Expr<double> -
Available on Expr<
Add this expression toint> , provided by the ExpressionInt extensionother
. -
operator <(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
operator <=(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
operator ==(
Object other) → bool -
The equality operator.
inherited
-
operator >(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
. -
operator >=(
Expr< T> other) → Expr<bool> -
Available on Expr<
Check if this expression is less thanT> , provided by the ExpressionNum extensionother
.