ComparatorCondition |
N.eq(N that) |
Returns a comparator condition (that evaluates to true if the value of the current
attribute is equal to that of the specified attribute) for building
condition expression.
|
ComparatorCondition |
N.ge(N that) |
Returns a comparator condition (that evaluates to true if the value of the current
attribute is greater than or equal to that of the specified attribute) for building
condition expression.
|
ComparatorCondition |
N.gt(N that) |
Returns a comparator condition (that evaluates to true if the value of the current
attribute is greater than that of the specified attribute) for building
condition expression.
|
IfNotExistsFunction<N> |
N.ifNotExists(N defaultValue) |
Returns an IfNotExists object which represents an if_not_exists(path, operand) function call where path refers to that
of the current attribute; used for building expressions.
|
ComparatorCondition |
N.le(N that) |
Returns a comparator condition (that evaluates to true if the value of the current
attribute is less than or equal to that of the specified attribute) for building
condition expression.
|
ComparatorCondition |
N.lt(N that) |
Returns a comparator condition (that evaluates to true if the value of the current
attribute is less than that of the specified attribute) for building
condition expression.
|
MinusOperation |
N.minus(N attr) |
Returns a MinusOperation object that represents the subtraction of
the value of the given attribute from that of the current attribute; used
for building update expression.
|
ComparatorCondition |
N.ne(N that) |
Returns a comparator condition (that evaluates to true if the value of the current
attribute is not equal to that of the specified attribute) for building
condition expression.
|
PlusOperation |
N.plus(N attr) |
Returns a PlusOperation object that represents the addition of the
value of the given attribute to that of the current attribute; used for
building update expression.
|
SetAction |
N.set(N source) |
Returns a SetAction object used for building update
expression.
|