Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.dynamodb.datamodeling
Class ScanResultPage<T>

java.lang.Object
  extended by com.amazonaws.services.dynamodb.datamodeling.ScanResultPage<T>

Deprecated.

@Deprecated
public class ScanResultPage<T>
extends Object

Container for a page of scan results.


Constructor Summary
ScanResultPage()
          Deprecated.  
 
Method Summary
 Key getLastEvaluatedKey()
          Deprecated. Returns the last evaluated key, which can be used as the exclusiveStartKey to fetch the next page of results.
 List<T> getResults()
          Deprecated. Returns all matching items for this page of scan results, which may be empty.
 void setLastEvaluatedKey(Key lastEvaluatedKey)
          Deprecated.  
 void setResults(List<T> results)
          Deprecated.  
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ScanResultPage

public ScanResultPage()
Deprecated. 
Method Detail

getResults

public List<T> getResults()
Deprecated. 
Returns all matching items for this page of scan results, which may be empty.


setResults

public void setResults(List<T> results)
Deprecated. 

getLastEvaluatedKey

public Key getLastEvaluatedKey()
Deprecated. 
Returns the last evaluated key, which can be used as the exclusiveStartKey to fetch the next page of results. Returns null if this is the last page of results.


setLastEvaluatedKey

public void setLastEvaluatedKey(Key lastEvaluatedKey)
Deprecated. 


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.