/* * Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.dynamodbv2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** * <p> * Represents the selection criteria for a <code>Query</code> or <code>Scan</code> operation: * </p> * <ul> * <li> * <p> * For a <code>Query</code> operation, <code>Condition</code> is used for specifying the <code>KeyConditions</code> to * use when querying a table or an index. For <code>KeyConditions</code>, only the following comparison operators are * supported: * </p> * <p> * <code>EQ | LE | LT | GE | GT | BEGINS_WITH | BETWEEN</code> * </p> * <p> * <code>Condition</code> is also used in a <code>QueryFilter</code>, which evaluates the query results and returns only * the desired values. * </p> * </li> * <li> * <p> * For a <code>Scan</code> operation, <code>Condition</code> is used in a <code>ScanFilter</code>, which evaluates the * scan results and returns only the desired values. * </p> * </li> * </ul> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/Condition" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Condition implements Serializable, Cloneable, StructuredPojo { /** * <p> * One or more values to evaluate against the supplied attribute. The number of values in the list depends on the * <code>ComparisonOperator</code> being used. * </p> * <p> * For type Number, value comparisons are numeric. * </p> * <p> * String value comparisons for greater than, equals, or less than are based on ASCII character code values. For * example, <code>a</code> is greater than <code>A</code>, and <code>a</code> is greater than <code>B</code>. For a * list of code values, see <a * href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters">http://en.wikipedia * .org/wiki/ASCII#ASCII_printable_characters</a>. * </p> * <p> * For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. * </p> */ private java.util.List<AttributeValue> attributeValueList; /** * <p> * A comparator for evaluating attributes. For example, equals, greater than, less than, etc. * </p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, Binary, * String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not * equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, or * Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than the * one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not relevant to * the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean <code>false</code>. * This is because the attribute "<code>a</code>" exists; its data type is not relevant to the <code>NULL</code> * comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is of type String, then the operator checks * for a substring match. If the target attribute of the comparison is of type Binary, then the operator looks for a * subsequence of the target that matches the input. If the target attribute of the comparison is a set (" * <code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it finds an * exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is a String, then the operator checks for * the absence of a substring match. If the target attribute of the comparison is Binary, then the operator checks * for the absence of a subsequence of the target that matches the input. If the target attribute of the comparison * is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it * <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary (not a * Number or a set type). The target attribute of the comparison must be of type String or Binary (not a Number or a * set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type String, * Number, or Binary. These attributes are compared against an existing attribute of an item. If any elements of the * input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, either * String, Number, or Binary (not a set type). A target attribute matches if the target value is greater than, or * equal to, the first element and less than, or equal to, the second element. If an item contains an * <code>AttributeValue</code> element of a different type than the one provided in the request, the value does not * match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. Also, * <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html">Legacy * Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * </p> */ private String comparisonOperator; /** * <p> * One or more values to evaluate against the supplied attribute. The number of values in the list depends on the * <code>ComparisonOperator</code> being used. * </p> * <p> * For type Number, value comparisons are numeric. * </p> * <p> * String value comparisons for greater than, equals, or less than are based on ASCII character code values. For * example, <code>a</code> is greater than <code>A</code>, and <code>a</code> is greater than <code>B</code>. For a * list of code values, see <a * href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters">http://en.wikipedia * .org/wiki/ASCII#ASCII_printable_characters</a>. * </p> * <p> * For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. * </p> * * @return One or more values to evaluate against the supplied attribute. The number of values in the list depends * on the <code>ComparisonOperator</code> being used.</p> * <p> * For type Number, value comparisons are numeric. * </p> * <p> * String value comparisons for greater than, equals, or less than are based on ASCII character code values. * For example, <code>a</code> is greater than <code>A</code>, and <code>a</code> is greater than * <code>B</code>. For a list of code values, see <a * href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters" * >http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters</a>. * </p> * <p> * For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. */ public java.util.List<AttributeValue> getAttributeValueList() { return attributeValueList; } /** * <p> * One or more values to evaluate against the supplied attribute. The number of values in the list depends on the * <code>ComparisonOperator</code> being used. * </p> * <p> * For type Number, value comparisons are numeric. * </p> * <p> * String value comparisons for greater than, equals, or less than are based on ASCII character code values. For * example, <code>a</code> is greater than <code>A</code>, and <code>a</code> is greater than <code>B</code>. For a * list of code values, see <a * href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters">http://en.wikipedia * .org/wiki/ASCII#ASCII_printable_characters</a>. * </p> * <p> * For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. * </p> * * @param attributeValueList * One or more values to evaluate against the supplied attribute. The number of values in the list depends on * the <code>ComparisonOperator</code> being used.</p> * <p> * For type Number, value comparisons are numeric. * </p> * <p> * String value comparisons for greater than, equals, or less than are based on ASCII character code values. * For example, <code>a</code> is greater than <code>A</code>, and <code>a</code> is greater than * <code>B</code>. For a list of code values, see <a * href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters" * >http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters</a>. * </p> * <p> * For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. */ public void setAttributeValueList(java.util.Collection<AttributeValue> attributeValueList) { if (attributeValueList == null) { this.attributeValueList = null; return; } this.attributeValueList = new java.util.ArrayList<AttributeValue>(attributeValueList); } /** * <p> * One or more values to evaluate against the supplied attribute. The number of values in the list depends on the * <code>ComparisonOperator</code> being used. * </p> * <p> * For type Number, value comparisons are numeric. * </p> * <p> * String value comparisons for greater than, equals, or less than are based on ASCII character code values. For * example, <code>a</code> is greater than <code>A</code>, and <code>a</code> is greater than <code>B</code>. For a * list of code values, see <a * href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters">http://en.wikipedia * .org/wiki/ASCII#ASCII_printable_characters</a>. * </p> * <p> * For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setAttributeValueList(java.util.Collection)} or {@link #withAttributeValueList(java.util.Collection)} if * you want to override the existing values. * </p> * * @param attributeValueList * One or more values to evaluate against the supplied attribute. The number of values in the list depends on * the <code>ComparisonOperator</code> being used.</p> * <p> * For type Number, value comparisons are numeric. * </p> * <p> * String value comparisons for greater than, equals, or less than are based on ASCII character code values. * For example, <code>a</code> is greater than <code>A</code>, and <code>a</code> is greater than * <code>B</code>. For a list of code values, see <a * href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters" * >http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters</a>. * </p> * <p> * For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. * @return Returns a reference to this object so that method calls can be chained together. */ public Condition withAttributeValueList(AttributeValue... attributeValueList) { if (this.attributeValueList == null) { setAttributeValueList(new java.util.ArrayList<AttributeValue>(attributeValueList.length)); } for (AttributeValue ele : attributeValueList) { this.attributeValueList.add(ele); } return this; } /** * <p> * One or more values to evaluate against the supplied attribute. The number of values in the list depends on the * <code>ComparisonOperator</code> being used. * </p> * <p> * For type Number, value comparisons are numeric. * </p> * <p> * String value comparisons for greater than, equals, or less than are based on ASCII character code values. For * example, <code>a</code> is greater than <code>A</code>, and <code>a</code> is greater than <code>B</code>. For a * list of code values, see <a * href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters">http://en.wikipedia * .org/wiki/ASCII#ASCII_printable_characters</a>. * </p> * <p> * For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. * </p> * * @param attributeValueList * One or more values to evaluate against the supplied attribute. The number of values in the list depends on * the <code>ComparisonOperator</code> being used.</p> * <p> * For type Number, value comparisons are numeric. * </p> * <p> * String value comparisons for greater than, equals, or less than are based on ASCII character code values. * For example, <code>a</code> is greater than <code>A</code>, and <code>a</code> is greater than * <code>B</code>. For a list of code values, see <a * href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters" * >http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters</a>. * </p> * <p> * For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. * @return Returns a reference to this object so that method calls can be chained together. */ public Condition withAttributeValueList(java.util.Collection<AttributeValue> attributeValueList) { setAttributeValueList(attributeValueList); return this; } /** * <p> * A comparator for evaluating attributes. For example, equals, greater than, less than, etc. * </p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, Binary, * String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not * equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, or * Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than the * one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not relevant to * the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean <code>false</code>. * This is because the attribute "<code>a</code>" exists; its data type is not relevant to the <code>NULL</code> * comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is of type String, then the operator checks * for a substring match. If the target attribute of the comparison is of type Binary, then the operator looks for a * subsequence of the target that matches the input. If the target attribute of the comparison is a set (" * <code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it finds an * exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is a String, then the operator checks for * the absence of a substring match. If the target attribute of the comparison is Binary, then the operator checks * for the absence of a subsequence of the target that matches the input. If the target attribute of the comparison * is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it * <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary (not a * Number or a set type). The target attribute of the comparison must be of type String or Binary (not a Number or a * set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type String, * Number, or Binary. These attributes are compared against an existing attribute of an item. If any elements of the * input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, either * String, Number, or Binary (not a set type). A target attribute matches if the target value is greater than, or * equal to, the first element and less than, or equal to, the second element. If an item contains an * <code>AttributeValue</code> element of a different type than the one provided in the request, the value does not * match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. Also, * <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html">Legacy * Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * </p> * * @param comparisonOperator * A comparator for evaluating attributes. For example, equals, greater than, less than, etc.</p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> * element of a different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does * not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not * relevant to the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute * "<code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean * <code>false</code>. This is because the attribute "<code>a</code>" exists; its data type is not relevant * to the <code>NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is of type String, then the * operator checks for a substring match. If the target attribute of the comparison is of type Binary, then * the operator looks for a subsequence of the target that matches the input. If the target attribute of the * comparison is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator * evaluates to true if it finds an exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is a String, then the * operator checks for the absence of a substring match. If the target attribute of the comparison is Binary, * then the operator checks for the absence of a subsequence of the target that matches the input. If the * target attribute of the comparison is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), * then the operator evaluates to true if it <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary * (not a Number or a set type). The target attribute of the comparison must be of type String or Binary (not * a Number or a set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type * String, Number, or Binary. These attributes are compared against an existing attribute of an item. If any * elements of the input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second * value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, * either String, Number, or Binary (not a set type). A target attribute matches if the target value is * greater than, or equal to, the first element and less than, or equal to, the second element. If an item * contains an <code>AttributeValue</code> element of a different type than the one provided in the request, * the value does not match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. * Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html" * >Legacy Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * @see ComparisonOperator */ public void setComparisonOperator(String comparisonOperator) { this.comparisonOperator = comparisonOperator; } /** * <p> * A comparator for evaluating attributes. For example, equals, greater than, less than, etc. * </p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, Binary, * String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not * equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, or * Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than the * one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not relevant to * the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean <code>false</code>. * This is because the attribute "<code>a</code>" exists; its data type is not relevant to the <code>NULL</code> * comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is of type String, then the operator checks * for a substring match. If the target attribute of the comparison is of type Binary, then the operator looks for a * subsequence of the target that matches the input. If the target attribute of the comparison is a set (" * <code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it finds an * exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is a String, then the operator checks for * the absence of a substring match. If the target attribute of the comparison is Binary, then the operator checks * for the absence of a subsequence of the target that matches the input. If the target attribute of the comparison * is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it * <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary (not a * Number or a set type). The target attribute of the comparison must be of type String or Binary (not a Number or a * set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type String, * Number, or Binary. These attributes are compared against an existing attribute of an item. If any elements of the * input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, either * String, Number, or Binary (not a set type). A target attribute matches if the target value is greater than, or * equal to, the first element and less than, or equal to, the second element. If an item contains an * <code>AttributeValue</code> element of a different type than the one provided in the request, the value does not * match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. Also, * <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html">Legacy * Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * </p> * * @return A comparator for evaluating attributes. For example, equals, greater than, less than, etc.</p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> * element of a different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different * type than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> * does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not * relevant to the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of * attribute "<code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean * <code>false</code>. This is because the attribute "<code>a</code>" exists; its data type is not relevant * to the <code>NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is of type String, then the * operator checks for a substring match. If the target attribute of the comparison is of type Binary, then * the operator looks for a subsequence of the target that matches the input. If the target attribute of the * comparison is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator * evaluates to true if it finds an exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is a String, then the * operator checks for the absence of a substring match. If the target attribute of the comparison is * Binary, then the operator checks for the absence of a subsequence of the target that matches the input. * If the target attribute of the comparison is a set ("<code>SS</code>", "<code>NS</code>", or " * <code>BS</code>"), then the operator evaluates to true if it <i>does not</i> find an exact match with any * member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary * (not a Number or a set type). The target attribute of the comparison must be of type String or Binary * (not a Number or a set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type * String, Number, or Binary. These attributes are compared against an existing attribute of an item. If any * elements of the input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second * value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, * either String, Number, or Binary (not a set type). A target attribute matches if the target value is * greater than, or equal to, the first element and less than, or equal to, the second element. If an item * contains an <code>AttributeValue</code> element of a different type than the one provided in the request, * the value does not match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. * Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html" * >Legacy Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * @see ComparisonOperator */ public String getComparisonOperator() { return this.comparisonOperator; } /** * <p> * A comparator for evaluating attributes. For example, equals, greater than, less than, etc. * </p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, Binary, * String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not * equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, or * Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than the * one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not relevant to * the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean <code>false</code>. * This is because the attribute "<code>a</code>" exists; its data type is not relevant to the <code>NULL</code> * comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is of type String, then the operator checks * for a substring match. If the target attribute of the comparison is of type Binary, then the operator looks for a * subsequence of the target that matches the input. If the target attribute of the comparison is a set (" * <code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it finds an * exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is a String, then the operator checks for * the absence of a substring match. If the target attribute of the comparison is Binary, then the operator checks * for the absence of a subsequence of the target that matches the input. If the target attribute of the comparison * is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it * <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary (not a * Number or a set type). The target attribute of the comparison must be of type String or Binary (not a Number or a * set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type String, * Number, or Binary. These attributes are compared against an existing attribute of an item. If any elements of the * input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, either * String, Number, or Binary (not a set type). A target attribute matches if the target value is greater than, or * equal to, the first element and less than, or equal to, the second element. If an item contains an * <code>AttributeValue</code> element of a different type than the one provided in the request, the value does not * match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. Also, * <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html">Legacy * Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * </p> * * @param comparisonOperator * A comparator for evaluating attributes. For example, equals, greater than, less than, etc.</p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> * element of a different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does * not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not * relevant to the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute * "<code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean * <code>false</code>. This is because the attribute "<code>a</code>" exists; its data type is not relevant * to the <code>NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is of type String, then the * operator checks for a substring match. If the target attribute of the comparison is of type Binary, then * the operator looks for a subsequence of the target that matches the input. If the target attribute of the * comparison is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator * evaluates to true if it finds an exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is a String, then the * operator checks for the absence of a substring match. If the target attribute of the comparison is Binary, * then the operator checks for the absence of a subsequence of the target that matches the input. If the * target attribute of the comparison is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), * then the operator evaluates to true if it <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary * (not a Number or a set type). The target attribute of the comparison must be of type String or Binary (not * a Number or a set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type * String, Number, or Binary. These attributes are compared against an existing attribute of an item. If any * elements of the input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second * value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, * either String, Number, or Binary (not a set type). A target attribute matches if the target value is * greater than, or equal to, the first element and less than, or equal to, the second element. If an item * contains an <code>AttributeValue</code> element of a different type than the one provided in the request, * the value does not match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. * Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html" * >Legacy Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * @return Returns a reference to this object so that method calls can be chained together. * @see ComparisonOperator */ public Condition withComparisonOperator(String comparisonOperator) { setComparisonOperator(comparisonOperator); return this; } /** * <p> * A comparator for evaluating attributes. For example, equals, greater than, less than, etc. * </p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, Binary, * String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not * equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, or * Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than the * one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not relevant to * the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean <code>false</code>. * This is because the attribute "<code>a</code>" exists; its data type is not relevant to the <code>NULL</code> * comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is of type String, then the operator checks * for a substring match. If the target attribute of the comparison is of type Binary, then the operator looks for a * subsequence of the target that matches the input. If the target attribute of the comparison is a set (" * <code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it finds an * exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is a String, then the operator checks for * the absence of a substring match. If the target attribute of the comparison is Binary, then the operator checks * for the absence of a subsequence of the target that matches the input. If the target attribute of the comparison * is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it * <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary (not a * Number or a set type). The target attribute of the comparison must be of type String or Binary (not a Number or a * set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type String, * Number, or Binary. These attributes are compared against an existing attribute of an item. If any elements of the * input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, either * String, Number, or Binary (not a set type). A target attribute matches if the target value is greater than, or * equal to, the first element and less than, or equal to, the second element. If an item contains an * <code>AttributeValue</code> element of a different type than the one provided in the request, the value does not * match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. Also, * <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html">Legacy * Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * </p> * * @param comparisonOperator * A comparator for evaluating attributes. For example, equals, greater than, less than, etc.</p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> * element of a different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does * not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not * relevant to the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute * "<code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean * <code>false</code>. This is because the attribute "<code>a</code>" exists; its data type is not relevant * to the <code>NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is of type String, then the * operator checks for a substring match. If the target attribute of the comparison is of type Binary, then * the operator looks for a subsequence of the target that matches the input. If the target attribute of the * comparison is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator * evaluates to true if it finds an exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is a String, then the * operator checks for the absence of a substring match. If the target attribute of the comparison is Binary, * then the operator checks for the absence of a subsequence of the target that matches the input. If the * target attribute of the comparison is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), * then the operator evaluates to true if it <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary * (not a Number or a set type). The target attribute of the comparison must be of type String or Binary (not * a Number or a set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type * String, Number, or Binary. These attributes are compared against an existing attribute of an item. If any * elements of the input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second * value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, * either String, Number, or Binary (not a set type). A target attribute matches if the target value is * greater than, or equal to, the first element and less than, or equal to, the second element. If an item * contains an <code>AttributeValue</code> element of a different type than the one provided in the request, * the value does not match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. * Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html" * >Legacy Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * @see ComparisonOperator */ public void setComparisonOperator(ComparisonOperator comparisonOperator) { this.comparisonOperator = comparisonOperator.toString(); } /** * <p> * A comparator for evaluating attributes. For example, equals, greater than, less than, etc. * </p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, Binary, * String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not * equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, or * Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than the * one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type than * the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does not equal * <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not relevant to * the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, including * lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean <code>false</code>. * This is because the attribute "<code>a</code>" exists; its data type is not relevant to the <code>NULL</code> * comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is of type String, then the operator checks * for a substring match. If the target attribute of the comparison is of type Binary, then the operator looks for a * subsequence of the target that matches the input. If the target attribute of the comparison is a set (" * <code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it finds an * exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, Number, * or Binary (not a set type). If the target attribute of the comparison is a String, then the operator checks for * the absence of a substring match. If the target attribute of the comparison is Binary, then the operator checks * for the absence of a subsequence of the target that matches the input. If the target attribute of the comparison * is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator evaluates to true if it * <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary (not a * Number or a set type). The target attribute of the comparison must be of type String or Binary (not a Number or a * set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type String, * Number, or Binary. These attributes are compared against an existing attribute of an item. If any elements of the * input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, either * String, Number, or Binary (not a set type). A target attribute matches if the target value is greater than, or * equal to, the first element and less than, or equal to, the second element. If an item contains an * <code>AttributeValue</code> element of a different type than the one provided in the request, the value does not * match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. Also, * <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html">Legacy * Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * </p> * * @param comparisonOperator * A comparator for evaluating attributes. For example, equals, greater than, less than, etc.</p> * <p> * The following comparison operators are available: * </p> * <p> * <code>EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS | BEGINS_WITH | IN | BETWEEN</code> * </p> * <p> * The following are descriptions of each comparison operator. * </p> * <ul> * <li> * <p> * <code>EQ</code> : Equal. <code>EQ</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> * element of a different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NE</code> : Not equal. <code>NE</code> is supported for all data types, including lists and maps. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * Binary, String Set, Number Set, or Binary Set. If an item contains an <code>AttributeValue</code> of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not equal * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LE</code> : Less than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>LT</code> : Less than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String, Number, * or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a different type * than the one provided in the request, the value does not match. For example, <code>{"S":"6"}</code> does * not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not compare to * <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GE</code> : Greater than or equal. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>GT</code> : Greater than. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If an item contains an <code>AttributeValue</code> element of a * different type than the one provided in the request, the value does not match. For example, * <code>{"S":"6"}</code> does not equal <code>{"N":"6"}</code>. Also, <code>{"N":"6"}</code> does not * compare to <code>{"NS":["6", "2", "1"]}</code>. * </p> * <p/></li> * <li> * <p> * <code>NOT_NULL</code> : The attribute exists. <code>NOT_NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the existence of an attribute, not its data type. If the data type of attribute " * <code>a</code>" is null, and you evaluate it using <code>NOT_NULL</code>, the result is a Boolean * <code>true</code>. This result is because the attribute "<code>a</code>" exists; its data type is not * relevant to the <code>NOT_NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>NULL</code> : The attribute does not exist. <code>NULL</code> is supported for all data types, * including lists and maps. * </p> * <note> * <p> * This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute * "<code>a</code>" is null, and you evaluate it using <code>NULL</code>, the result is a Boolean * <code>false</code>. This is because the attribute "<code>a</code>" exists; its data type is not relevant * to the <code>NULL</code> comparison operator. * </p> * </note></li> * <li> * <p> * <code>CONTAINS</code> : Checks for a subsequence, or value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is of type String, then the * operator checks for a substring match. If the target attribute of the comparison is of type Binary, then * the operator looks for a subsequence of the target that matches the input. If the target attribute of the * comparison is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), then the operator * evaluates to true if it finds an exact match with any member of the set. * </p> * <p> * CONTAINS is supported for lists: When evaluating "<code>a CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>NOT_CONTAINS</code> : Checks for absence of a subsequence, or absence of a value in a set. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> element of type String, * Number, or Binary (not a set type). If the target attribute of the comparison is a String, then the * operator checks for the absence of a substring match. If the target attribute of the comparison is Binary, * then the operator checks for the absence of a subsequence of the target that matches the input. If the * target attribute of the comparison is a set ("<code>SS</code>", "<code>NS</code>", or "<code>BS</code>"), * then the operator evaluates to true if it <i>does not</i> find an exact match with any member of the set. * </p> * <p> * NOT_CONTAINS is supported for lists: When evaluating "<code>a NOT CONTAINS b</code>", "<code>a</code> * " can be a list; however, "<code>b</code>" cannot be a set, a map, or a list. * </p> * </li> * <li> * <p> * <code>BEGINS_WITH</code> : Checks for a prefix. * </p> * <p> * <code>AttributeValueList</code> can contain only one <code>AttributeValue</code> of type String or Binary * (not a Number or a set type). The target attribute of the comparison must be of type String or Binary (not * a Number or a set type). * </p> * <p/></li> * <li> * <p> * <code>IN</code> : Checks for matching elements in a list. * </p> * <p> * <code>AttributeValueList</code> can contain one or more <code>AttributeValue</code> elements of type * String, Number, or Binary. These attributes are compared against an existing attribute of an item. If any * elements of the input are equal to the item attribute, the expression evaluates to true. * </p> * </li> * <li> * <p> * <code>BETWEEN</code> : Greater than or equal to the first value, and less than or equal to the second * value. * </p> * <p> * <code>AttributeValueList</code> must contain two <code>AttributeValue</code> elements of the same type, * either String, Number, or Binary (not a set type). A target attribute matches if the target value is * greater than, or equal to, the first element and less than, or equal to, the second element. If an item * contains an <code>AttributeValue</code> element of a different type than the one provided in the request, * the value does not match. For example, <code>{"S":"6"}</code> does not compare to <code>{"N":"6"}</code>. * Also, <code>{"N":"6"}</code> does not compare to <code>{"NS":["6", "2", "1"]}</code> * </p> * </li> * </ul> * <p> * For usage examples of <code>AttributeValueList</code> and <code>ComparisonOperator</code>, see <a * href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html" * >Legacy Conditional Parameters</a> in the <i>Amazon DynamoDB Developer Guide</i>. * @return Returns a reference to this object so that method calls can be chained together. * @see ComparisonOperator */ public Condition withComparisonOperator(ComparisonOperator comparisonOperator) { setComparisonOperator(comparisonOperator); return this; } /** * Returns a string representation of this object; useful for testing and debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAttributeValueList() != null) sb.append("AttributeValueList: ").append(getAttributeValueList()).append(","); if (getComparisonOperator() != null) sb.append("ComparisonOperator: ").append(getComparisonOperator()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Condition == false) return false; Condition other = (Condition) obj; if (other.getAttributeValueList() == null ^ this.getAttributeValueList() == null) return false; if (other.getAttributeValueList() != null && other.getAttributeValueList().equals(this.getAttributeValueList()) == false) return false; if (other.getComparisonOperator() == null ^ this.getComparisonOperator() == null) return false; if (other.getComparisonOperator() != null && other.getComparisonOperator().equals(this.getComparisonOperator()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAttributeValueList() == null) ? 0 : getAttributeValueList().hashCode()); hashCode = prime * hashCode + ((getComparisonOperator() == null) ? 0 : getComparisonOperator().hashCode()); return hashCode; } @Override public Condition clone() { try { return (Condition) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.dynamodbv2.model.transform.ConditionMarshaller.getInstance().marshall(this, protocolMarshaller); } }