public class ListThingsResult extends Object implements Serializable, Cloneable
The output from the ListThings operation.
Constructor and Description |
---|
ListThingsResult() |
Modifier and Type | Method and Description |
---|---|
ListThingsResult |
clone() |
boolean |
equals(Object obj) |
String |
getNextToken()
A token used to retrieve the next value.
|
List<ThingAttribute> |
getThings()
The things.
|
int |
hashCode() |
void |
setNextToken(String nextToken)
A token used to retrieve the next value.
|
void |
setThings(Collection<ThingAttribute> things)
The things.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListThingsResult |
withNextToken(String nextToken)
A token used to retrieve the next value.
|
ListThingsResult |
withThings(Collection<ThingAttribute> things)
The things.
|
ListThingsResult |
withThings(ThingAttribute... things)
The things.
|
public List<ThingAttribute> getThings()
The things.
public void setThings(Collection<ThingAttribute> things)
The things.
things
- The things.public ListThingsResult withThings(ThingAttribute... things)
The things.
NOTE: This method appends the values to the existing list (if
any). Use setThings(java.util.Collection)
or
withThings(java.util.Collection)
if you want to override the
existing values.
things
- The things.public ListThingsResult withThings(Collection<ThingAttribute> things)
The things.
things
- The things.public void setNextToken(String nextToken)
A token used to retrieve the next value.
nextToken
- A token used to retrieve the next value.public String getNextToken()
A token used to retrieve the next value.
public ListThingsResult withNextToken(String nextToken)
A token used to retrieve the next value.
nextToken
- A token used to retrieve the next value.public String toString()
toString
in class Object
Object.toString()
public ListThingsResult clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.