C# Class Dev2.Data.Operations.Dev2MergeOperations

Inheritance: IDev2MergeOperations
显示文件 Open project: Warewolf-ESB/Warewolf

Public Methods

Method Description
Clear ( ) : void
Dev2MergeOperations ( ) : System
Merge ( string value, enMergeType mergeType, string at, string padding, enMergeAlignment mergeAlignment ) : void

Merges the specified value.

Merge ( string value, string mergeType, string at, string padding, string align ) : void

Private Methods

Method Description
CharMergeOp ( string value, string at ) : void

Merge data to the class string using a Character merge, which will merge the data with the specified characters inbetween

IndexMergeOp ( string value, string at, string padding, enMergeAlignment mergeAlignment ) : void

Merge data to the class string using a index merge, mainly used for fixed width,if the index is more than the length of the value then the padding will be applyed useing the padding character

NewLineMergeOp ( string value ) : void

Merge data to the class string using a NewLine merge, which will merge the data with a new line in between

NoneMergeOp ( string value ) : void

Merge data to the class string using a None merge, which will merge the data with nothing inbetween

TabMergeOp ( string value ) : void

Merge data to the class string using a Tab merge, which will merge the data with a Tab inbetween

Method Details

Clear() public method

public Clear ( ) : void
return void

Dev2MergeOperations() public method

public Dev2MergeOperations ( ) : System
return System

Merge() public method

Merges the specified value.
value;The value can not be null.
public Merge ( string value, enMergeType mergeType, string at, string padding, enMergeAlignment mergeAlignment ) : void
value string The value.
mergeType enMergeType Type of the merge.
at string At.
padding string The padding.
mergeAlignment enMergeAlignment The merge alignment.
return void

Merge() public method

public Merge ( string value, string mergeType, string at, string padding, string align ) : void
value string
mergeType string
at string
padding string
align string
return void