|
Did this page help you?Yes No Tell us about it... |
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.amazonaws.services.dynamodb.datamodeling.DynamoDBScanExpression
public class DynamoDBScanExpression
Options for filtering results from a scan operation. For example, callers can
specify filter conditions so that only objects whose attributes match
different conditions are returned (see ComparisonOperator
for more
information on the available comparison types).
DynamoDBMapper.scan(Class, DynamoDBScanExpression)
Constructor Summary | |
---|---|
DynamoDBScanExpression()
|
Method Summary | |
---|---|
void |
addFilterCondition(String attributeName,
Condition condition)
Adds a new filter condition to the current scan filter. |
Map<String,Condition> |
getScanFilter()
Returns the scan filter as a map of attribute names to conditions. |
void |
setScanFilter(Map<String,Condition> scanFilter)
Sets the scan filter to the map of attribute names to conditions. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DynamoDBScanExpression()
Method Detail |
---|
public void setScanFilter(Map<String,Condition> scanFilter)
scanFilter
- The map of attribute names to conditions to use when filtering
scan results.public Map<String,Condition> getScanFilter()
public void addFilterCondition(String attributeName, Condition condition)
attributeName
- The name of the attribute on which the specified condition
operates.condition
- The condition which describes how the specified attribute is
compared and if a row of data is included in the results
returned by the scan operation.
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |