Class ParameterDefinition
- java.lang.Object
-
- com.orchestranetworks.addon.dex.transformation.ParameterDefinition
-
public final class ParameterDefinition extends java.lang.ObjectDefines the parameter for aTransformationclass.- Since:
- 2.3.0
-
-
Constructor Summary
Constructors Constructor Description ParameterDefinition(java.lang.String name, com.onwbp.base.text.UserMessage description, com.orchestranetworks.schema.SchemaTypeName type, java.lang.String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.onwbp.base.text.UserMessagegetDescription()Returns the parameter description.java.lang.StringgetName()Returns the parameter name.com.orchestranetworks.schema.SchemaTypeNamegetType()Returns theSchemaTypeNameof the parameter.java.lang.StringgetValue()Returns theStringvalue of the parameter.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the parameter name.
-
getDescription
public com.onwbp.base.text.UserMessage getDescription()
Returns the parameter description.
-
getType
public com.orchestranetworks.schema.SchemaTypeName getType()
Returns theSchemaTypeNameof the parameter.
-
getValue
public java.lang.String getValue()
Returns theStringvalue of the parameter.
-
-