decodeAndTagAddEndElement static method
Decode a String type data encrypted with encode and give the tag to the final index.
Implementation
static List decodeAndTagAddEndElement(String key, String value) {
List sendValue = value.split("~~!feValueIndex!~~");
sendValue.add(key);
return sendValue;
}