public class PipelineObject
extends java.lang.Object
implements java.io.Serializable
Contains information about a pipeline object. This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.
| コンストラクタと説明 |
|---|
PipelineObject() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.List<Field> |
getFields()
Key-value pairs that define the properties of the object.
|
java.lang.String |
getId()
Identifier of the object.
|
java.lang.String |
getName()
Name of the object.
|
int |
hashCode() |
void |
setFields(java.util.Collection<Field> fields)
Key-value pairs that define the properties of the object.
|
void |
setId(java.lang.String id)
Identifier of the object.
|
void |
setName(java.lang.String name)
Name of the object.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
PipelineObject |
withFields(java.util.Collection<Field> fields)
Key-value pairs that define the properties of the object.
|
PipelineObject |
withFields(Field... fields)
Key-value pairs that define the properties of the object.
|
PipelineObject |
withId(java.lang.String id)
Identifier of the object.
|
PipelineObject |
withName(java.lang.String name)
Name of the object.
|
public java.lang.String getId()
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
public void setId(java.lang.String id)
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
id - Identifier of the object.public PipelineObject withId(java.lang.String id)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
id - Identifier of the object.public java.lang.String getName()
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
public void setName(java.lang.String name)
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
name - Name of the object.public PipelineObject withName(java.lang.String name)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
name - Name of the object.public java.util.List<Field> getFields()
public void setFields(java.util.Collection<Field> fields)
fields - Key-value pairs that define the properties of the object.public PipelineObject withFields(Field... fields)
Returns a reference to this object so that method calls can be chained together.
fields - Key-value pairs that define the properties of the object.public PipelineObject withFields(java.util.Collection<Field> fields)
Returns a reference to this object so that method calls can be chained together.
fields - Key-value pairs that define the properties of the object.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