@Beta @Immutable public final class S extends PathOperand
Use ExpressionSpecBuilder.S(String)
to instantiate this class.
Modifier and Type | Method and Description |
---|---|
FunctionCondition |
beginsWith(String value)
Returns a function condition (that evaluates to true if the value of the
current attribute begins with the specified operand) for building
condition expression.
|
BetweenCondition |
between(String low,
String high)
Returns a
BetweenCondition that represents a BETWEEN comparison (that evaluates to true if the value of the
current attribute is greater than or equal to the given low value, and
less than or equal to the given high value) for building condition
expression. |
FunctionCondition |
contains(String substring)
Returns a function condition (that evaluates to true if the value of the
current attribute contains the specified substring) for building
condition expression.
|
ComparatorCondition |
eq(S 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 |
eq(String value)
Returns a comparator condition (that evaluates to true if the attribute value
referred to by this path operand is equal to the specified value) for
building condition expression.
|
ComparatorCondition |
ge(S 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 |
ge(String value)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is greater than or equal to the specified value) for building
condition expression.
|
ComparatorCondition |
gt(S 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.
|
ComparatorCondition |
gt(String value)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is greater than the specified value) for building
condition expression.
|
IfNotExistsFunction<S> |
ifNotExists(S 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. |
IfNotExistsFunction<S> |
ifNotExists(String defaultValue)
Returns an
IfNotExists object which represents an if_not_exists(path, operand) function call where path refers to that
of the current path operand; used for building expressions. |
InCondition |
in(List<String> values)
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the values in the specified list) for
building condition expression.
|
InCondition |
in(String... values)
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the specified values) for building condition
expression.
|
ComparatorCondition |
le(S 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 |
le(String value)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is less than or equal to the specified value) for building
condition expression.
|
ComparatorCondition |
lt(S 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.
|
ComparatorCondition |
lt(String value)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is less than the specified value) for building
condition expression.
|
ComparatorCondition |
ne(S 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.
|
ComparatorCondition |
ne(String value)
Returns a comparator condition (that evaluates to true if the attribute value
referred to by this path operand is not equal to that of the specified
path operand) for building condition expression.
|
SetAction |
set(IfNotExistsFunction<S> ifNotExistsFunction)
Returns a
SetAction object used for building update
expression. |
SetAction |
set(S source)
Returns a
SetAction object used for building update
expression. |
SetAction |
set(String value)
Returns a
SetAction object used for building update
expression. |
public FunctionCondition beginsWith(String value)
public FunctionCondition contains(String substring)
public ComparatorCondition eq(S that)
public ComparatorCondition ne(S that)
public ComparatorCondition le(String value)
public ComparatorCondition le(S that)
public ComparatorCondition lt(String value)
public ComparatorCondition lt(S that)
public ComparatorCondition ge(String value)
public ComparatorCondition ge(S that)
public ComparatorCondition gt(String value)
public ComparatorCondition gt(S that)
public BetweenCondition between(String low, String high)
BetweenCondition
that represents a BETWEEN comparison (that evaluates to true if the value of the
current attribute is greater than or equal to the given low value, and
less than or equal to the given high value) for building condition
expression.public IfNotExistsFunction<S> ifNotExists(S defaultValue)
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.
"if_not_exists (path, operand) – If the item does not contain an attribute at the specified path, then if_not_exists evaluates to operand; otherwise, it evaluates to path. You can use this function to avoid overwriting an attribute already present in the item."
defaultValue
- the default value that will be used as the operand to the
if_not_exists function call.public final InCondition in(String... values)
values
- specified values. The number of values must be at least one
and at most 100.public final InCondition in(List<String> values)
values
- specified list of values. The number of values must be at
least one and at most 100.public SetAction set(S source)
SetAction
object used for building update
expression. If the attribute referred to by this path operand doesn't
exist, the returned object represents adding the attribute value of the
specified source path operand to an item. If the current attribute
already exists, the returned object represents the value replacement of
the current attribute by the attribute value of the specified source path
operand.public SetAction set(String value)
SetAction
object used for building update
expression. If the attribute referred to by this path operand doesn't
exist, the returned object represents adding the specified value as an
attribute to an item. If the attribute referred to by this path operand
already exists, the returned object represents the value replacement of
the current attribute by the specified value.public SetAction set(IfNotExistsFunction<S> ifNotExistsFunction)
SetAction
object used for building update
expression. If the attribute referred to by this path operand doesn't
exist, the returned object represents adding the value of evaluating the
specified IfNotExists
function as an attribute to an item.
If the attribute referred to by this path operand already exists, the
returned object represents the value replacement of the current attribute
by the value of evaluating the specified IfNotExists
function.public ComparatorCondition eq(String value)
public ComparatorCondition ne(String value)
public IfNotExistsFunction<S> ifNotExists(String defaultValue)
IfNotExists
object which represents an if_not_exists(path, operand) function call where path refers to that
of the current path operand; used for building expressions.
"if_not_exists (path, operand) – If the item does not contain an attribute at the specified path, then if_not_exists evaluates to operand; otherwise, it evaluates to path. You can use this function to avoid overwriting an attribute already present in the item."
defaultValue
- the default value that will be used as the operand to the
if_not_exists function call.Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.