Class DescribeJobFlowsResult
- java.lang.Object
-
- com.amazonaws.services.elasticmapreduce.model.DescribeJobFlowsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeJobFlowsResult extends Object implements Serializable, Cloneable
The output for the DescribeJobFlows operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeJobFlowsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeJobFlowsResultclone()booleanequals(Object obj)List<JobFlowDetail>getJobFlows()A list of job flows matching the parameters supplied.inthashCode()voidsetJobFlows(Collection<JobFlowDetail> jobFlows)A list of job flows matching the parameters supplied.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeJobFlowsResultwithJobFlows(JobFlowDetail... jobFlows)A list of job flows matching the parameters supplied.DescribeJobFlowsResultwithJobFlows(Collection<JobFlowDetail> jobFlows)A list of job flows matching the parameters supplied.
-
-
-
Method Detail
-
getJobFlows
public List<JobFlowDetail> getJobFlows()
A list of job flows matching the parameters supplied.
- Returns:
- A list of job flows matching the parameters supplied.
-
setJobFlows
public void setJobFlows(Collection<JobFlowDetail> jobFlows)
A list of job flows matching the parameters supplied.
- Parameters:
jobFlows- A list of job flows matching the parameters supplied.
-
withJobFlows
public DescribeJobFlowsResult withJobFlows(JobFlowDetail... jobFlows)
A list of job flows matching the parameters supplied.
NOTE: This method appends the values to the existing list (if any). Use
setJobFlows(java.util.Collection)orwithJobFlows(java.util.Collection)if you want to override the existing values.- Parameters:
jobFlows- A list of job flows matching the parameters supplied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withJobFlows
public DescribeJobFlowsResult withJobFlows(Collection<JobFlowDetail> jobFlows)
A list of job flows matching the parameters supplied.
- Parameters:
jobFlows- A list of job flows matching the parameters supplied.- 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 DescribeJobFlowsResult clone()
-
-