Class TaskList
- java.lang.Object
-
- com.amazonaws.services.simpleworkflow.model.TaskList
-
- All Implemented Interfaces:
Serializable,Cloneable
public class TaskList extends Object implements Serializable, Cloneable
Represents a task list.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TaskList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TaskListclone()booleanequals(Object obj)StringgetName()The name of the task list.inthashCode()voidsetName(String name)The name of the task list.StringtoString()Returns a string representation of this object; useful for testing and debugging.TaskListwithName(String name)The name of the task list.
-
-
-
Method Detail
-
setName
public void setName(String name)
The name of the task list.
- Parameters:
name- The name of the task list.
-
getName
public String getName()
The name of the task list.
- Returns:
- The name of the task list.
-
withName
public TaskList withName(String name)
The name of the task list.
- Parameters:
name- The name of the task list.- 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()
-
-