Class ListPresetsResult
- java.lang.Object
-
- com.amazonaws.services.elastictranscoder.model.ListPresetsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListPresetsResult extends Object implements Serializable, Cloneable
The
ListPresetsResponse
structure.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListPresetsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListPresetsResult
clone()
boolean
equals(Object obj)
String
getNextPageToken()
A value that you use to access the second and subsequent pages of results, if any.List<Preset>
getPresets()
An array ofPreset
objects.int
hashCode()
void
setNextPageToken(String nextPageToken)
A value that you use to access the second and subsequent pages of results, if any.void
setPresets(Collection<Preset> presets)
An array ofPreset
objects.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListPresetsResult
withNextPageToken(String nextPageToken)
A value that you use to access the second and subsequent pages of results, if any.ListPresetsResult
withPresets(Preset... presets)
An array ofPreset
objects.ListPresetsResult
withPresets(Collection<Preset> presets)
An array ofPreset
objects.
-
-
-
Method Detail
-
getPresets
public List<Preset> getPresets()
An array of
Preset
objects.- Returns:
- An array of
Preset
objects.
-
setPresets
public void setPresets(Collection<Preset> presets)
An array of
Preset
objects.- Parameters:
presets
- An array ofPreset
objects.
-
withPresets
public ListPresetsResult withPresets(Preset... presets)
An array of
Preset
objects.NOTE: This method appends the values to the existing list (if any). Use
setPresets(java.util.Collection)
orwithPresets(java.util.Collection)
if you want to override the existing values.- Parameters:
presets
- An array ofPreset
objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withPresets
public ListPresetsResult withPresets(Collection<Preset> presets)
An array of
Preset
objects.- Parameters:
presets
- An array ofPreset
objects.- 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 presets fit on one page or when you've reached the last page of results, the value of
NextPageToken
isnull
.- Parameters:
nextPageToken
- A value that you use to access the second and subsequent pages of results, if any. When the presets fit on one page or when you've reached the last page of results, the value ofNextPageToken
isnull
.
-
getNextPageToken
public String getNextPageToken()
A value that you use to access the second and subsequent pages of results, if any. When the presets fit on one page or when you've reached the last page of results, the value of
NextPageToken
isnull
.- Returns:
- A value that you use to access the second and subsequent pages of
results, if any. When the presets fit on one page or when you've
reached the last page of results, the value of
NextPageToken
isnull
.
-
withNextPageToken
public ListPresetsResult withNextPageToken(String nextPageToken)
A value that you use to access the second and subsequent pages of results, if any. When the presets fit on one page or when you've reached the last page of results, the value of
NextPageToken
isnull
.- Parameters:
nextPageToken
- A value that you use to access the second and subsequent pages of results, if any. When the presets fit on one page or when you've reached the last page of results, the value ofNextPageToken
isnull
.- 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 ListPresetsResult clone()
-
-