C# Class Dev2.Data.Operations.Dev2MergeOperations

Inheritance: IDev2MergeOperations
Afficher le fichier Open project: Warewolf-ESB/Warewolf

Méthodes publiques

Méthode 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

Méthode 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 méthode

public Clear ( ) : void
Résultat void

Dev2MergeOperations() public méthode

public Dev2MergeOperations ( ) : System
Résultat System

Merge() public méthode

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.
Résultat void

Merge() public méthode

public Merge ( string value, string mergeType, string at, string padding, string align ) : void
value string
mergeType string
at string
padding string
align string
Résultat void