Show:

Exposes API's to provide condition on where clause to calculate total.

Methods

between

(
  • start
  • end
)
ITotal

Used to specify BETWEEN condition.

Parameters:

Returns:

ITotal:

ITotal Interface.

equalTo

(
  • value
)
ITotal

Used to specify EQUAL TO (=) condition.

Parameters:

  • value String

    Value for which EQUAL TO (=) condition will be applied.

Returns:

ITotal:

ITotal Interface.

greaterThan

(
  • value
)
ITotal

Used to specify GREATER THAN (>) condition.

Parameters:

  • value String

    Value for while GREATER THAN (>) condition will be specified.

Returns:

ITotal:

ITotal Interface.

greaterThanEqual

(
  • value
)
ITotal

Used to specify GREATER THAN EQUAL (>=) condition.

Parameters:

  • value String

    Value for which GREATER THAN EQUAL (>=) condition will be specified.

Returns:

ITotal:

ITotal Interface.

in

(
  • values
)
ITotal

Used to specify IN condition.

Parameters:

  • values Array

    Values for IN condition.

Returns:

ITotal:

ITotal Interface.

lessThan

(
  • value
)
ITotal

Used to specify LESS THAN (<) condition.

Parameters:

  • value String

    Value for which LESS THAN (<) condition will be specified.

Returns:

ITotal:

ITotal Interface.

lessThanEqual

(
  • value
)
ITotal

Used to specify LESS THAN EQUAL (<=) condition.

Parameters:

  • value String

    Value for which LESS THAN EQUAL (<=) condition will be specified.

Returns:

ITotal:

ITotal Interface.

like

(
  • like
)
ITotal

Used to specify LIKE condition.

Parameters:

Returns:

ITotal:

ITotal Interface.

notEqualTo

(
  • value
)
ITotal

Used to specify NOT EQUAL TO (!=) condition.

Parameters:

  • value String

    Value for which NOT EQUAL TO (=) condition will be applied.

Returns:

ITotal:

ITotal Interface.