Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.datapipeline.model
Class QueryObjectsResult

java.lang.Object
  extended by com.amazonaws.services.datapipeline.model.QueryObjectsResult
All Implemented Interfaces:
Serializable

public class QueryObjectsResult
extends Object
implements Serializable

Contains the output from the QueryObjects action.

See Also:
Serialized Form

Constructor Summary
QueryObjectsResult()
           
 
Method Summary
 boolean equals(Object obj)
           
 Boolean getHasMoreResults()
          If True, there are more results that can be obtained by a subsequent call to QueryObjects.
 List<String> getIds()
          A list of identifiers that match the query selectors.
 String getMarker()
          The starting point for the results to be returned.
 int hashCode()
           
 Boolean isHasMoreResults()
          If True, there are more results that can be obtained by a subsequent call to QueryObjects.
 void setHasMoreResults(Boolean hasMoreResults)
          If True, there are more results that can be obtained by a subsequent call to QueryObjects.
 void setIds(Collection<String> ids)
          A list of identifiers that match the query selectors.
 void setMarker(String marker)
          The starting point for the results to be returned.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 QueryObjectsResult withHasMoreResults(Boolean hasMoreResults)
          If True, there are more results that can be obtained by a subsequent call to QueryObjects.
 QueryObjectsResult withIds(Collection<String> ids)
          A list of identifiers that match the query selectors.
 QueryObjectsResult withIds(String... ids)
          A list of identifiers that match the query selectors.
 QueryObjectsResult withMarker(String marker)
          The starting point for the results to be returned.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

QueryObjectsResult

public QueryObjectsResult()
Method Detail

getIds

public List<String> getIds()
A list of identifiers that match the query selectors.

Returns:
A list of identifiers that match the query selectors.

setIds

public void setIds(Collection<String> ids)
A list of identifiers that match the query selectors.

Parameters:
ids - A list of identifiers that match the query selectors.

withIds

public QueryObjectsResult withIds(String... ids)
A list of identifiers that match the query selectors.

Returns a reference to this object so that method calls can be chained together.

Parameters:
ids - A list of identifiers that match the query selectors.
Returns:
A reference to this updated object so that method calls can be chained together.

withIds

public QueryObjectsResult withIds(Collection<String> ids)
A list of identifiers that match the query selectors.

Returns a reference to this object so that method calls can be chained together.

Parameters:
ids - A list of identifiers that match the query selectors.
Returns:
A reference to this updated object so that method calls can be chained together.

getMarker

public String getMarker()
The starting point for the results to be returned. As long as the action returns HasMoreResults as True, you can call QueryObjects again and pass the marker value from the response to retrieve the next set of results.

Constraints:
Length: 0 - 1024
Pattern: [ -??-??-?\r\n\t]*

Returns:
The starting point for the results to be returned. As long as the action returns HasMoreResults as True, you can call QueryObjects again and pass the marker value from the response to retrieve the next set of results.

setMarker

public void setMarker(String marker)
The starting point for the results to be returned. As long as the action returns HasMoreResults as True, you can call QueryObjects again and pass the marker value from the response to retrieve the next set of results.

Constraints:
Length: 0 - 1024
Pattern: [ -??-??-?\r\n\t]*

Parameters:
marker - The starting point for the results to be returned. As long as the action returns HasMoreResults as True, you can call QueryObjects again and pass the marker value from the response to retrieve the next set of results.

withMarker

public QueryObjectsResult withMarker(String marker)
The starting point for the results to be returned. As long as the action returns HasMoreResults as True, you can call QueryObjects again and pass the marker value from the response to retrieve the next set of results.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 0 - 1024
Pattern: [ -??-??-?\r\n\t]*

Parameters:
marker - The starting point for the results to be returned. As long as the action returns HasMoreResults as True, you can call QueryObjects again and pass the marker value from the response to retrieve the next set of results.
Returns:
A reference to this updated object so that method calls can be chained together.

isHasMoreResults

public Boolean isHasMoreResults()
If True, there are more results that can be obtained by a subsequent call to QueryObjects.

Returns:
If True, there are more results that can be obtained by a subsequent call to QueryObjects.

setHasMoreResults

public void setHasMoreResults(Boolean hasMoreResults)
If True, there are more results that can be obtained by a subsequent call to QueryObjects.

Parameters:
hasMoreResults - If True, there are more results that can be obtained by a subsequent call to QueryObjects.

withHasMoreResults

public QueryObjectsResult withHasMoreResults(Boolean hasMoreResults)
If True, there are more results that can be obtained by a subsequent call to QueryObjects.

Returns a reference to this object so that method calls can be chained together.

Parameters:
hasMoreResults - If True, there are more results that can be obtained by a subsequent call to QueryObjects.
Returns:
A reference to this updated object so that method calls can be chained together.

getHasMoreResults

public Boolean getHasMoreResults()
If True, there are more results that can be obtained by a subsequent call to QueryObjects.

Returns:
If True, there are more results that can be obtained by a subsequent call to QueryObjects.

toString

public String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


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