Search in sources :

Example 11 with Trim

use of io.atlasmap.v2.Trim in project atlasmap by atlasmap.

the class BaseMarshallerTest method generateactions.

private ArrayList<Action> generateactions() {
    ArrayList<Action> actions = new ArrayList<Action>();
    actions.add(new Camelize());
    actions.add(new Capitalize());
    actions.add(new Length());
    actions.add(new Lowercase());
    actions.add(new SeparateByDash());
    actions.add(new SeparateByUnderscore());
    actions.add(new Trim());
    actions.add(new TrimLeft());
    actions.add(new TrimRight());
    actions.add(new Uppercase());
    return actions;
}
Also used : Action(io.atlasmap.v2.Action) SeparateByUnderscore(io.atlasmap.v2.SeparateByUnderscore) Trim(io.atlasmap.v2.Trim) TrimRight(io.atlasmap.v2.TrimRight) ArrayList(java.util.ArrayList) SeparateByDash(io.atlasmap.v2.SeparateByDash) Camelize(io.atlasmap.v2.Camelize) TrimLeft(io.atlasmap.v2.TrimLeft) Length(io.atlasmap.v2.Length) Lowercase(io.atlasmap.v2.Lowercase) Uppercase(io.atlasmap.v2.Uppercase) Capitalize(io.atlasmap.v2.Capitalize)

Aggregations

Trim (io.atlasmap.v2.Trim)10 Action (io.atlasmap.v2.Action)7 Capitalize (io.atlasmap.v2.Capitalize)6 Lowercase (io.atlasmap.v2.Lowercase)6 SeparateByDash (io.atlasmap.v2.SeparateByDash)6 SeparateByUnderscore (io.atlasmap.v2.SeparateByUnderscore)6 TrimLeft (io.atlasmap.v2.TrimLeft)6 TrimRight (io.atlasmap.v2.TrimRight)6 Uppercase (io.atlasmap.v2.Uppercase)6 ArrayList (java.util.ArrayList)5 Camelize (io.atlasmap.v2.Camelize)4 Length (io.atlasmap.v2.Length)4 Test (org.junit.jupiter.api.Test)3 ActionDetail (io.atlasmap.v2.ActionDetail)2 AtlasMapping (io.atlasmap.v2.AtlasMapping)2 GenerateUUID (io.atlasmap.v2.GenerateUUID)2 Mapping (io.atlasmap.v2.Mapping)2 PadStringLeft (io.atlasmap.v2.PadStringLeft)2 PadStringRight (io.atlasmap.v2.PadStringRight)2 SubString (io.atlasmap.v2.SubString)2