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 TaskList
clone()
boolean
equals(Object obj)
String
getName()
The name of the task list.int
hashCode()
void
setName(String name)
The name of the task list.String
toString()
Returns a string representation of this object; useful for testing and debugging.TaskList
withName(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
-