com.futuresight.util.mystique.ConcatMystTurn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-mystique Show documentation
Show all versions of json-mystique Show documentation
Json Utility to transform Jsons
/*
* Copyright (c) Balajee TM 2016.
* All rights reserved.
* License - @see
*/
/*
* Created on 25 Aug, 2016 by balajeetm
*/
package com.futuresight.util.mystique;
import java.util.List;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang.StringUtils;
import org.springframework.stereotype.Component;
import com.futuresight.util.mystique.lever.MysCon;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
/**
* The Class ConcatMystTurn.
*
* @author balajeetm
*/
@Component
public class ConcatMystTurn extends AbstractMystTurn {
/* (non-Javadoc)
* @see com.futuresight.util.mystique.Mystique#transform(java.util.List, com.google.gson.JsonObject, java.lang.String)
*/
@Override
public JsonElement transmute(List source, JsonObject deps, JsonObject aces, JsonObject turn) {
StringBuilder stringBuilder = new StringBuilder();
if (CollectionUtils.isNotEmpty(source)) {
String separator = jsonLever.getAsString(turn.get(MysCon.SEPARATOR), MysCon.EMPTY);
for (int count = 0; count < source.size(); count++) {
JsonElement granularSource = getGranularSource(source.get(count), turn, deps, aces);
if (count != 0) {
stringBuilder.append(separator);
}
stringBuilder.append(StringUtils.strip(granularSource.toString(), MysCon.DOUBLE_QUOTES));
}
}
return new JsonPrimitive(stringBuilder.toString());
}
}