public class StepTimeline
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
The timeline of the cluster step lifecycle.
Modifier and Type | Field and Description |
---|---|
private java.util.Date |
creationDateTime
The date and time when the cluster step was created.
|
private java.util.Date |
endDateTime
The date and time when the cluster step execution completed or failed.
|
private java.util.Date |
startDateTime
The date and time when the cluster step execution started.
|
Constructor and Description |
---|
StepTimeline() |
Modifier and Type | Method and Description |
---|---|
StepTimeline |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.Date |
getCreationDateTime()
The date and time when the cluster step was created.
|
java.util.Date |
getEndDateTime()
The date and time when the cluster step execution completed or failed.
|
java.util.Date |
getStartDateTime()
The date and time when the cluster step execution started.
|
int |
hashCode() |
void |
setCreationDateTime(java.util.Date creationDateTime)
The date and time when the cluster step was created.
|
void |
setEndDateTime(java.util.Date endDateTime)
The date and time when the cluster step execution completed or failed.
|
void |
setStartDateTime(java.util.Date startDateTime)
The date and time when the cluster step execution started.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
StepTimeline |
withCreationDateTime(java.util.Date creationDateTime)
The date and time when the cluster step was created.
|
StepTimeline |
withEndDateTime(java.util.Date endDateTime)
The date and time when the cluster step execution completed or failed.
|
StepTimeline |
withStartDateTime(java.util.Date startDateTime)
The date and time when the cluster step execution started.
|
private java.util.Date creationDateTime
The date and time when the cluster step was created.
private java.util.Date startDateTime
The date and time when the cluster step execution started.
private java.util.Date endDateTime
The date and time when the cluster step execution completed or failed.
public void setCreationDateTime(java.util.Date creationDateTime)
The date and time when the cluster step was created.
creationDateTime
- The date and time when the cluster step was created.public java.util.Date getCreationDateTime()
The date and time when the cluster step was created.
public StepTimeline withCreationDateTime(java.util.Date creationDateTime)
The date and time when the cluster step was created.
creationDateTime
- The date and time when the cluster step was created.public void setStartDateTime(java.util.Date startDateTime)
The date and time when the cluster step execution started.
startDateTime
- The date and time when the cluster step execution started.public java.util.Date getStartDateTime()
The date and time when the cluster step execution started.
public StepTimeline withStartDateTime(java.util.Date startDateTime)
The date and time when the cluster step execution started.
startDateTime
- The date and time when the cluster step execution started.public void setEndDateTime(java.util.Date endDateTime)
The date and time when the cluster step execution completed or failed.
endDateTime
- The date and time when the cluster step execution completed or
failed.public java.util.Date getEndDateTime()
The date and time when the cluster step execution completed or failed.
public StepTimeline withEndDateTime(java.util.Date endDateTime)
The date and time when the cluster step execution completed or failed.
endDateTime
- The date and time when the cluster step execution completed or
failed.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 StepTimeline clone()
clone
in class java.lang.Object