Uses of Class
org.apache.empire.db.expr.column.DBCalcExpr

Packages that use DBCalcExpr
Package
Description
This package contains the core Empire-DB implementation classes.
  • Uses of DBCalcExpr in org.apache.empire.db

    Methods in org.apache.empire.db that return DBCalcExpr
    Modifier and Type
    Method
    Description
    DBColumnExpr.divideBy(Object value)
    Creates and returns a new calculation object for the SQL "/" (divide) operator.
    DBColumnExpr.minus(int value)
    Creates and returns a new calculation object for either the SQL "+" (plus) or "-" (minus) operator depending on whether the supplied integer value is negative or positive.
    DBColumnExpr.minus(Object value)
    Creates and returns a new calculation object for the SQL "-" (minus) operator.
    DBColumnExpr.multiplyWith(Object value)
    Creates and returns a new calculation object for the SQL "*" (multiply) operator.
    DBColumnExpr.plus(int value)
    Creates and returns a new calculation object for either the SQL "+" (plus) or "-" (minus) operator depending on whether the supplied integer value is positive or negative.
    DBColumnExpr.plus(Object value)
    Creates and returns a new calculation object for the SQL "+" (plus) operator.