public class ListActionTypesResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the output of a list action types action.
Modifier and Type | Field and Description |
---|---|
private java.util.List<ActionType> |
actionTypes
Provides details of the action types.
|
private java.lang.String |
nextToken
If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list action
types call to return the next set of action types in the list.
|
Constructor and Description |
---|
ListActionTypesResult() |
Modifier and Type | Method and Description |
---|---|
ListActionTypesResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<ActionType> |
getActionTypes()
Provides details of the action types.
|
java.lang.String |
getNextToken()
If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list action
types call to return the next set of action types in the list.
|
int |
hashCode() |
void |
setActionTypes(java.util.Collection<ActionType> actionTypes)
Provides details of the action types.
|
void |
setNextToken(java.lang.String nextToken)
If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list action
types call to return the next set of action types in the list.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListActionTypesResult |
withActionTypes(ActionType... actionTypes)
Provides details of the action types.
|
ListActionTypesResult |
withActionTypes(java.util.Collection<ActionType> actionTypes)
Provides details of the action types.
|
ListActionTypesResult |
withNextToken(java.lang.String nextToken)
If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list action
types call to return the next set of action types in the list.
|
private java.util.List<ActionType> actionTypes
Provides details of the action types.
private java.lang.String nextToken
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
public java.util.List<ActionType> getActionTypes()
Provides details of the action types.
public void setActionTypes(java.util.Collection<ActionType> actionTypes)
Provides details of the action types.
actionTypes
- Provides details of the action types.public ListActionTypesResult withActionTypes(ActionType... actionTypes)
Provides details of the action types.
NOTE: This method appends the values to the existing list (if
any). Use setActionTypes(java.util.Collection)
or
withActionTypes(java.util.Collection)
if you want to override
the existing values.
actionTypes
- Provides details of the action types.public ListActionTypesResult withActionTypes(java.util.Collection<ActionType> actionTypes)
Provides details of the action types.
actionTypes
- Provides details of the action types.public void setNextToken(java.lang.String nextToken)
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
nextToken
- If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list
action types call to return the next set of action types in the
list.public java.lang.String getNextToken()
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
public ListActionTypesResult withNextToken(java.lang.String nextToken)
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
nextToken
- If the amount of returned information is significantly large, an
identifier is also returned which can be used in a subsequent list
action types call to return the next set of action types in the
list.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ListActionTypesResult clone()
clone
in class java.lang.Object