public class UpdateRecordsResult extends Object implements Serializable, Cloneable
| Constructor and Description |
|---|
UpdateRecordsResult() |
| Modifier and Type | Method and Description |
|---|---|
UpdateRecordsResult |
clone() |
boolean |
equals(Object obj) |
List<Record> |
getRecords()
A list of records that have been updated.
|
int |
hashCode() |
void |
setRecords(Collection<Record> records)
A list of records that have been updated.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
UpdateRecordsResult |
withRecords(Collection<Record> records)
A list of records that have been updated.
|
UpdateRecordsResult |
withRecords(Record... records)
A list of records that have been updated.
|
public List<Record> getRecords()
public void setRecords(Collection<Record> records)
records - A list of records that have been updated.public UpdateRecordsResult withRecords(Record... records)
NOTE: This method appends the values to the existing list (if
any). Use setRecords(java.util.Collection) or
withRecords(java.util.Collection) if you want to override the
existing values.
records - A list of records that have been updated.public UpdateRecordsResult withRecords(Collection<Record> records)
records - A list of records that have been updated.public String toString()
toString in class ObjectObject.toString()public UpdateRecordsResult clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.