public class UpdateRecordsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
private SdkInternalList<Record> |
records
A list of records that have been updated.
|
Constructor and Description |
---|
UpdateRecordsResult() |
Modifier and Type | Method and Description |
---|---|
UpdateRecordsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<Record> |
getRecords()
A list of records that have been updated.
|
int |
hashCode() |
void |
setRecords(java.util.Collection<Record> records)
A list of records that have been updated.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
UpdateRecordsResult |
withRecords(java.util.Collection<Record> records)
A list of records that have been updated.
|
UpdateRecordsResult |
withRecords(Record... records)
A list of records that have been updated.
|
private SdkInternalList<Record> records
public java.util.List<Record> getRecords()
public void setRecords(java.util.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(java.util.Collection<Record> records)
records
- A list of records that have been updated.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public UpdateRecordsResult clone()
clone
in class java.lang.Object