Class DescribeApplicationVersionsResult
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.DescribeApplicationVersionsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeApplicationVersionsResult extends Object implements Serializable, Cloneable
Result message wrapping a list of application version descriptions.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeApplicationVersionsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeApplicationVersionsResult
clone()
boolean
equals(Object obj)
List<ApplicationVersionDescription>
getApplicationVersions()
List ofApplicationVersionDescription
objects sorted by order of creation.int
hashCode()
void
setApplicationVersions(Collection<ApplicationVersionDescription> applicationVersions)
List ofApplicationVersionDescription
objects sorted by order of creation.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeApplicationVersionsResult
withApplicationVersions(ApplicationVersionDescription... applicationVersions)
List ofApplicationVersionDescription
objects sorted by order of creation.DescribeApplicationVersionsResult
withApplicationVersions(Collection<ApplicationVersionDescription> applicationVersions)
List ofApplicationVersionDescription
objects sorted by order of creation.
-
-
-
Method Detail
-
getApplicationVersions
public List<ApplicationVersionDescription> getApplicationVersions()
List of
ApplicationVersionDescription
objects sorted by order of creation.- Returns:
- List of
ApplicationVersionDescription
objects sorted by order of creation.
-
setApplicationVersions
public void setApplicationVersions(Collection<ApplicationVersionDescription> applicationVersions)
List of
ApplicationVersionDescription
objects sorted by order of creation.- Parameters:
applicationVersions
- List ofApplicationVersionDescription
objects sorted by order of creation.
-
withApplicationVersions
public DescribeApplicationVersionsResult withApplicationVersions(ApplicationVersionDescription... applicationVersions)
List of
ApplicationVersionDescription
objects sorted by order of creation.NOTE: This method appends the values to the existing list (if any). Use
setApplicationVersions(java.util.Collection)
orwithApplicationVersions(java.util.Collection)
if you want to override the existing values.- Parameters:
applicationVersions
- List ofApplicationVersionDescription
objects sorted by order of creation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withApplicationVersions
public DescribeApplicationVersionsResult withApplicationVersions(Collection<ApplicationVersionDescription> applicationVersions)
List of
ApplicationVersionDescription
objects sorted by order of creation.- Parameters:
applicationVersions
- List ofApplicationVersionDescription
objects sorted by order of creation.- 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 DescribeApplicationVersionsResult clone()
-
-