use of io.atlasmap.v2.Lowercase 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;
}
Aggregations