public class WorkflowType
extends java.lang.Object
implements java.io.Serializable
Represents a workflow type.
| コンストラクタと説明 |
|---|
WorkflowType() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getName()
The name of the workflow type.
|
java.lang.String |
getVersion()
The version of the workflow type.
|
int |
hashCode() |
void |
setName(java.lang.String name)
The name of the workflow type.
|
void |
setVersion(java.lang.String version)
The version of the workflow type.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
WorkflowType |
withName(java.lang.String name)
The name of the workflow type.
|
WorkflowType |
withVersion(java.lang.String version)
The version of the workflow type.
|
public java.lang.String getName()
Constraints:
Length: 1 - 256
public void setName(java.lang.String name)
Constraints:
Length: 1 - 256
name - The name of the workflow type. This field is required. public WorkflowType withName(java.lang.String name)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 256
name - The name of the workflow type. This field is required. public java.lang.String getVersion()
Constraints:
Length: 1 - 64
public void setVersion(java.lang.String version)
Constraints:
Length: 1 - 64
version - The version of the workflow type. This field is required. public WorkflowType withVersion(java.lang.String version)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 64
version - The version of the workflow type. This field is required. public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object