public class Field
extends java.lang.Object
implements java.io.Serializable
A key-value pair that describes a property of a pipeline object. The value is specified as either a string value ( StringValue ) or a
reference to another object ( RefValue ) but not as both.
| コンストラクタと説明 |
|---|
Field() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getKey()
The field identifier.
|
java.lang.String |
getRefValue()
The field value, expressed as the identifier of another object.
|
java.lang.String |
getStringValue()
The field value, expressed as a String.
|
int |
hashCode() |
void |
setKey(java.lang.String key)
The field identifier.
|
void |
setRefValue(java.lang.String refValue)
The field value, expressed as the identifier of another object.
|
void |
setStringValue(java.lang.String stringValue)
The field value, expressed as a String.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Field |
withKey(java.lang.String key)
The field identifier.
|
Field |
withRefValue(java.lang.String refValue)
The field value, expressed as the identifier of another object.
|
Field |
withStringValue(java.lang.String stringValue)
The field value, expressed as a String.
|
public java.lang.String getKey()
Constraints:
Length: 1 - 256
Pattern: [ --�𐀀-\r\n\t]*
public void setKey(java.lang.String key)
Constraints:
Length: 1 - 256
Pattern: [ --�𐀀-\r\n\t]*
key - The field identifier.public Field withKey(java.lang.String key)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 256
Pattern: [ --�𐀀-\r\n\t]*
key - The field identifier.public java.lang.String getStringValue()
Constraints:
Length: 0 - 10240
Pattern: [ --�𐀀-\r\n\t]*
public void setStringValue(java.lang.String stringValue)
Constraints:
Length: 0 - 10240
Pattern: [ --�𐀀-\r\n\t]*
stringValue - The field value, expressed as a String.public Field withStringValue(java.lang.String stringValue)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 0 - 10240
Pattern: [ --�𐀀-\r\n\t]*
stringValue - The field value, expressed as a String.public java.lang.String getRefValue()
Constraints:
Length: 1 - 256
Pattern: [ --�𐀀-\r\n\t]*
public void setRefValue(java.lang.String refValue)
Constraints:
Length: 1 - 256
Pattern: [ --�𐀀-\r\n\t]*
refValue - The field value, expressed as the identifier of another object.public Field withRefValue(java.lang.String refValue)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 256
Pattern: [ --�𐀀-\r\n\t]*
refValue - The field value, expressed as the identifier of another 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