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 DescribeJobFlowsResult
clone()
boolean
equals(Object obj)
List<JobFlowDetail>
getJobFlows()
A list of job flows matching the parameters supplied.int
hashCode()
void
setJobFlows(Collection<JobFlowDetail> jobFlows)
A list of job flows matching the parameters supplied.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeJobFlowsResult
withJobFlows(JobFlowDetail... jobFlows)
A list of job flows matching the parameters supplied.DescribeJobFlowsResult
withJobFlows(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeJobFlowsResult clone()
-
-