Class StageDeclaration
- All Implemented Interfaces:
Serializable
,Cloneable
Represents information about a stage and its definition.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()
boolean
The actions included in a stage.Reserved for future use.getName()
The name of the stage.int
hashCode()
void
setActions
(Collection<ActionDeclaration> actions) The actions included in a stage.void
setBlockers
(Collection<BlockerDeclaration> blockers) Reserved for future use.void
The name of the stage.toString()
Returns a string representation of this object; useful for testing and debugging.withActions
(ActionDeclaration... actions) The actions included in a stage.withActions
(Collection<ActionDeclaration> actions) The actions included in a stage.withBlockers
(BlockerDeclaration... blockers) Reserved for future use.withBlockers
(Collection<BlockerDeclaration> blockers) Reserved for future use.The name of the stage.
-
Constructor Details
-
StageDeclaration
public StageDeclaration()
-
-
Method Details
-
setName
The name of the stage.
- Parameters:
name
- The name of the stage.
-
getName
The name of the stage.
- Returns:
- The name of the stage.
-
withName
The name of the stage.
- Parameters:
name
- The name of the stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getBlockers
Reserved for future use.
- Returns:
- Reserved for future use.
-
setBlockers
Reserved for future use.
- Parameters:
blockers
- Reserved for future use.
-
withBlockers
Reserved for future use.
NOTE: This method appends the values to the existing list (if any). Use
setBlockers(java.util.Collection)
orwithBlockers(java.util.Collection)
if you want to override the existing values.- Parameters:
blockers
- Reserved for future use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withBlockers
Reserved for future use.
- Parameters:
blockers
- Reserved for future use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getActions
The actions included in a stage.
- Returns:
- The actions included in a stage.
-
setActions
The actions included in a stage.
- Parameters:
actions
- The actions included in a stage.
-
withActions
The actions included in a stage.
NOTE: This method appends the values to the existing list (if any). Use
setActions(java.util.Collection)
orwithActions(java.util.Collection)
if you want to override the existing values.- Parameters:
actions
- The actions included in a stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withActions
The actions included in a stage.
- Parameters:
actions
- The actions included in a stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
Returns a string representation of this object; useful for testing and debugging. -
equals
-
hashCode
public int hashCode() -
clone
-