Class StringConcat
- java.lang.Object
-
- com.orchestranetworks.addon.dint.transformation.ValidatableDefinition
-
- com.orchestranetworks.addon.dint.transformation.aggregate.AggregateTransformationDefinition<java.lang.String,java.lang.String>
-
- com.orchestranetworks.addon.dint.transformation.aggregate.StringConcat
-
- All Implemented Interfaces:
TransformationDefinition<java.util.List<java.lang.String>,java.lang.String>
public final class StringConcat extends AggregateTransformationDefinition<java.lang.String,java.lang.String>
Represents a transformation function to concatenate strings.- Since:
- 4.1.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSEPARATORName of the separator parameter.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCode()Returns the unique code.com.onwbp.base.text.UserMessagegetDescription()Returns the description.TransformationFunction<java.util.List<java.lang.String>,java.lang.String>getFunction()Returns a new instance of transformation function.InputDefinitiongetInputDefinition()Returns the input definition.static StringConcatgetInstance()Returns the instance.com.onwbp.base.text.UserMessagegetLabel()Returns the label.OutputDefinitiongetOutputDefinition()Returns the output definition.java.util.List<ParameterDefinition>getParameterDefinitions()Returns the list of parameters.-
Methods inherited from class com.orchestranetworks.addon.dint.transformation.aggregate.AggregateTransformationDefinition
getTransformationCategory
-
-
-
-
Field Detail
-
SEPARATOR
public static final java.lang.String SEPARATOR
Name of the separator parameter.This constant will be passed as parameter's name of the method
AggregateTransformationMappingStep.param(String, String)when using this transformation.- See Also:
- Constant Field Values
-
-
Method Detail
-
getInstance
public static StringConcat getInstance()
Returns the instance.
-
getCode
public java.lang.String getCode()
Description copied from interface:TransformationDefinitionReturns the unique code.
-
getLabel
public com.onwbp.base.text.UserMessage getLabel()
Description copied from interface:TransformationDefinitionReturns the label.
-
getDescription
public com.onwbp.base.text.UserMessage getDescription()
Description copied from interface:TransformationDefinitionReturns the description.Returns
nullby default.
-
getInputDefinition
public InputDefinition getInputDefinition()
Description copied from interface:TransformationDefinitionReturns the input definition.
-
getOutputDefinition
public OutputDefinition getOutputDefinition()
Description copied from interface:TransformationDefinitionReturns the output definition.
-
getParameterDefinitions
public java.util.List<ParameterDefinition> getParameterDefinitions()
Description copied from interface:TransformationDefinitionReturns the list of parameters.Returns an empty list by default.
-
getFunction
public TransformationFunction<java.util.List<java.lang.String>,java.lang.String> getFunction()
Description copied from interface:TransformationDefinitionReturns a new instance of transformation function.
-
-