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 DescribeApplicationVersionsResultclone()booleanequals(Object obj)List<ApplicationVersionDescription>getApplicationVersions()List ofApplicationVersionDescriptionobjects sorted by order of creation.inthashCode()voidsetApplicationVersions(Collection<ApplicationVersionDescription> applicationVersions)List ofApplicationVersionDescriptionobjects sorted by order of creation.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeApplicationVersionsResultwithApplicationVersions(ApplicationVersionDescription... applicationVersions)List ofApplicationVersionDescriptionobjects sorted by order of creation.DescribeApplicationVersionsResultwithApplicationVersions(Collection<ApplicationVersionDescription> applicationVersions)List ofApplicationVersionDescriptionobjects sorted by order of creation.
-
-
-
Method Detail
-
getApplicationVersions
public List<ApplicationVersionDescription> getApplicationVersions()
List of
ApplicationVersionDescriptionobjects sorted by order of creation.- Returns:
- List of
ApplicationVersionDescriptionobjects sorted by order of creation.
-
setApplicationVersions
public void setApplicationVersions(Collection<ApplicationVersionDescription> applicationVersions)
List of
ApplicationVersionDescriptionobjects sorted by order of creation.- Parameters:
applicationVersions- List ofApplicationVersionDescriptionobjects sorted by order of creation.
-
withApplicationVersions
public DescribeApplicationVersionsResult withApplicationVersions(ApplicationVersionDescription... applicationVersions)
List of
ApplicationVersionDescriptionobjects 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 ofApplicationVersionDescriptionobjects 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
ApplicationVersionDescriptionobjects sorted by order of creation.- Parameters:
applicationVersions- List ofApplicationVersionDescriptionobjects 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeApplicationVersionsResult clone()
-
-