Class ParameterDefinition
- java.lang.Object
-
- com.orchestranetworks.addon.dint.transformation.ParameterDefinition
-
public final class ParameterDefinition extends java.lang.ObjectThe definition of a transformation's parameter.- Since:
- 4.1.0
- See Also:
TransformationDefinition.getParameterDefinitions()
-
-
Constructor Summary
Constructors Constructor Description ParameterDefinition(java.lang.String name, com.onwbp.base.text.UserMessage label)Constructs a newParameterDefinition.ParameterDefinition(java.lang.String name, com.onwbp.base.text.UserMessage label, com.onwbp.base.text.UserMessage description, java.lang.String defaultValue)Constructs a newParameterDefinition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataTypegetDataType()Returns the data type.java.lang.StringgetDefaultValue()Returns the default value.com.onwbp.base.text.UserMessagegetDescription()Returns the description.com.onwbp.base.text.UserMessagegetLabel()Returns the label.java.lang.StringgetName()Returns the unique name.
-
-
-
Constructor Detail
-
ParameterDefinition
public ParameterDefinition(java.lang.String name, com.onwbp.base.text.UserMessage label)Constructs a newParameterDefinition.- Parameters:
name- the unique name.label- the label.
-
ParameterDefinition
public ParameterDefinition(java.lang.String name, com.onwbp.base.text.UserMessage label, com.onwbp.base.text.UserMessage description, java.lang.String defaultValue)Constructs a newParameterDefinition.- Parameters:
name- the unique name.label- the label.description- the description.defaultValue- the default value.
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the unique name.
-
getLabel
public com.onwbp.base.text.UserMessage getLabel()
Returns the label.
-
getDescription
public com.onwbp.base.text.UserMessage getDescription()
Returns the description.
-
getDefaultValue
public java.lang.String getDefaultValue()
Returns the default value.
-
getDataType
public DataType getDataType()
Returns the data type.Limitation: Only support String data type
DefaultDataTypes.STRING
-
-