@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AttributeValueList extends Object implements Serializable, Cloneable, StructuredPojo
Use the AttributeValueList to filter by string or integer values.
Constructor and Description |
---|
AttributeValueList() |
Modifier and Type | Method and Description |
---|---|
AttributeValueList |
clone() |
boolean |
equals(Object obj) |
List<Integer> |
getIntegerValues()
The list of integer values that the filter matches.
|
List<String> |
getStringValues()
The list of string values that the filter matches.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setIntegerValues(Collection<Integer> integerValues)
The list of integer values that the filter matches.
|
void |
setStringValues(Collection<String> stringValues)
The list of string values that the filter matches.
|
String |
toString()
Returns a string representation of this object.
|
AttributeValueList |
withIntegerValues(Collection<Integer> integerValues)
The list of integer values that the filter matches.
|
AttributeValueList |
withIntegerValues(Integer... integerValues)
The list of integer values that the filter matches.
|
AttributeValueList |
withStringValues(Collection<String> stringValues)
The list of string values that the filter matches.
|
AttributeValueList |
withStringValues(String... stringValues)
The list of string values that the filter matches.
|
public List<Integer> getIntegerValues()
The list of integer values that the filter matches.
public void setIntegerValues(Collection<Integer> integerValues)
The list of integer values that the filter matches.
integerValues
- The list of integer values that the filter matches.public AttributeValueList withIntegerValues(Integer... integerValues)
The list of integer values that the filter matches.
NOTE: This method appends the values to the existing list (if any). Use
setIntegerValues(java.util.Collection)
or withIntegerValues(java.util.Collection)
if you want
to override the existing values.
integerValues
- The list of integer values that the filter matches.public AttributeValueList withIntegerValues(Collection<Integer> integerValues)
The list of integer values that the filter matches.
integerValues
- The list of integer values that the filter matches.public List<String> getStringValues()
The list of string values that the filter matches.
public void setStringValues(Collection<String> stringValues)
The list of string values that the filter matches.
stringValues
- The list of string values that the filter matches.public AttributeValueList withStringValues(String... stringValues)
The list of string values that the filter matches.
NOTE: This method appends the values to the existing list (if any). Use
setStringValues(java.util.Collection)
or withStringValues(java.util.Collection)
if you want to
override the existing values.
stringValues
- The list of string values that the filter matches.public AttributeValueList withStringValues(Collection<String> stringValues)
The list of string values that the filter matches.
stringValues
- The list of string values that the filter matches.public String toString()
toString
in class Object
Object.toString()
public AttributeValueList clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.