public class ParameterObject extends Object implements Serializable, Cloneable
Contains information about a parameter object.
| Constructor and Description | 
|---|
| ParameterObject() | 
| Modifier and Type | Method and Description | 
|---|---|
| ParameterObject | clone() | 
| boolean | equals(Object obj) | 
| List<ParameterAttribute> | getAttributes()The attributes of the parameter object. | 
| String | getId()The ID of the parameter object. | 
| int | hashCode() | 
| void | setAttributes(Collection<ParameterAttribute> attributes)The attributes of the parameter object. | 
| void | setId(String id)The ID of the parameter object. | 
| String | toString()Returns a string representation of this object; useful for testing and
 debugging. | 
| ParameterObject | withAttributes(Collection<ParameterAttribute> attributes)The attributes of the parameter object. | 
| ParameterObject | withAttributes(ParameterAttribute... attributes)The attributes of the parameter object. | 
| ParameterObject | withId(String id)The ID of the parameter object. | 
public String getId()
 Constraints:
 Length: 1 - 256
 Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
public void setId(String id)
 Constraints:
 Length: 1 - 256
 Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
id - The ID of the parameter object.public ParameterObject withId(String id)
Returns a reference to this object so that method calls can be chained together.
 Constraints:
 Length: 1 - 256
 Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
id - The ID of the parameter object.public List<ParameterAttribute> getAttributes()
public void setAttributes(Collection<ParameterAttribute> attributes)
attributes - The attributes of the parameter object.public ParameterObject withAttributes(ParameterAttribute... attributes)
 NOTE: This method appends the values to the existing list (if
 any). Use setAttributes(java.util.Collection) or withAttributes(java.util.Collection) if you want to override the
 existing values.
 
Returns a reference to this object so that method calls can be chained together.
attributes - The attributes of the parameter object.public ParameterObject withAttributes(Collection<ParameterAttribute> attributes)
Returns a reference to this object so that method calls can be chained together.
attributes - The attributes of the parameter object.public String toString()
toString in class ObjectObject.toString()public ParameterObject clone()
Copyright © 2015. All rights reserved.