Class ListJobsByPipelineResult
- java.lang.Object
-
- com.amazonaws.services.elastictranscoder.model.ListJobsByPipelineResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListJobsByPipelineResult extends Object implements Serializable, Cloneable
The
ListJobsByPipelineResponsestructure.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListJobsByPipelineResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListJobsByPipelineResultclone()booleanequals(Object obj)List<Job>getJobs()An array ofJobobjects that are in the specified pipeline.StringgetNextPageToken()A value that you use to access the second and subsequent pages of results, if any.inthashCode()voidsetJobs(Collection<Job> jobs)An array ofJobobjects that are in the specified pipeline.voidsetNextPageToken(String nextPageToken)A value that you use to access the second and subsequent pages of results, if any.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListJobsByPipelineResultwithJobs(Job... jobs)An array ofJobobjects that are in the specified pipeline.ListJobsByPipelineResultwithJobs(Collection<Job> jobs)An array ofJobobjects that are in the specified pipeline.ListJobsByPipelineResultwithNextPageToken(String nextPageToken)A value that you use to access the second and subsequent pages of results, if any.
-
-
-
Method Detail
-
getJobs
public List<Job> getJobs()
An array of
Jobobjects that are in the specified pipeline.- Returns:
- An array of
Jobobjects that are in the specified pipeline.
-
setJobs
public void setJobs(Collection<Job> jobs)
An array of
Jobobjects that are in the specified pipeline.- Parameters:
jobs- An array ofJobobjects that are in the specified pipeline.
-
withJobs
public ListJobsByPipelineResult withJobs(Job... jobs)
An array of
Jobobjects that are in the specified pipeline.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- An array ofJobobjects that are in the specified pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withJobs
public ListJobsByPipelineResult withJobs(Collection<Job> jobs)
An array of
Jobobjects that are in the specified pipeline.- Parameters:
jobs- An array ofJobobjects that are in the specified pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextPageToken
public void setNextPageToken(String nextPageToken)
A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of
NextPageTokenisnull.- Parameters:
nextPageToken- A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value ofNextPageTokenisnull.
-
getNextPageToken
public String getNextPageToken()
A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of
NextPageTokenisnull.- Returns:
- A value that you use to access the second and subsequent pages of
results, if any. When the jobs in the specified pipeline fit on
one page or when you've reached the last page of results, the
value of
NextPageTokenisnull.
-
withNextPageToken
public ListJobsByPipelineResult withNextPageToken(String nextPageToken)
A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of
NextPageTokenisnull.- Parameters:
nextPageToken- A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value ofNextPageTokenisnull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListJobsByPipelineResult clone()
-
-