Class ListJobsResult
- java.lang.Object
-
- com.amazonaws.services.importexport.model.ListJobsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListJobsResult extends Object implements Serializable, Cloneable
Output structure for the ListJobs operation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListJobsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListJobsResult
clone()
boolean
equals(Object obj)
Boolean
getIsTruncated()
List<Job>
getJobs()
int
hashCode()
Boolean
isTruncated()
void
setIsTruncated(Boolean isTruncated)
void
setJobs(Collection<Job> jobs)
String
toString()
Returns a string representation of this object; useful for testing and debugging.ListJobsResult
withIsTruncated(Boolean isTruncated)
ListJobsResult
withJobs(Job... jobs)
NOTE: This method appends the values to the existing list (if any).ListJobsResult
withJobs(Collection<Job> jobs)
-
-
-
Method Detail
-
setJobs
public void setJobs(Collection<Job> jobs)
- Parameters:
jobs
-
-
withJobs
public ListJobsResult withJobs(Job... jobs)
NOTE: This method appends the values to the existing list (if any). Use
setJobs(java.util.Collection)
orwithJobs(java.util.Collection)
if you want to override the existing values.- Parameters:
jobs
-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withJobs
public ListJobsResult withJobs(Collection<Job> jobs)
- Parameters:
jobs
-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setIsTruncated
public void setIsTruncated(Boolean isTruncated)
- Parameters:
isTruncated
-
-
getIsTruncated
public Boolean getIsTruncated()
- Returns:
-
withIsTruncated
public ListJobsResult withIsTruncated(Boolean isTruncated)
- Parameters:
isTruncated
-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isTruncated
public Boolean isTruncated()
- Returns:
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListJobsResult clone()
-
-