public class WorkflowTypeFilter
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Used to filter workflow execution query results by type. Each parameter, if specified, defines a rule that must be satisfied by each returned result.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
name
Required. Name of the workflow type.
|
private java.lang.String |
version
Version of the workflow type.
|
Constructor and Description |
---|
WorkflowTypeFilter() |
Modifier and Type | Method and Description |
---|---|
WorkflowTypeFilter |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getName()
Required. Name of the workflow type.
|
java.lang.String |
getVersion()
Version of the workflow type.
|
int |
hashCode() |
void |
setName(java.lang.String name)
Required. Name of the workflow type.
|
void |
setVersion(java.lang.String version)
Version of the workflow type.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
WorkflowTypeFilter |
withName(java.lang.String name)
Required. Name of the workflow type.
|
WorkflowTypeFilter |
withVersion(java.lang.String version)
Version of the workflow type.
|
private java.lang.String name
Required. Name of the workflow type.
private java.lang.String version
Version of the workflow type.
public void setName(java.lang.String name)
Required. Name of the workflow type.
name
- Required.public java.lang.String getName()
Required. Name of the workflow type.
public WorkflowTypeFilter withName(java.lang.String name)
Required. Name of the workflow type.
name
- Required.public void setVersion(java.lang.String version)
Version of the workflow type.
version
- Version of the workflow type.public java.lang.String getVersion()
Version of the workflow type.
public WorkflowTypeFilter withVersion(java.lang.String version)
Version of the workflow type.
version
- Version of the workflow type.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 WorkflowTypeFilter clone()
clone
in class java.lang.Object