All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thegoate.utils.togoate.StringToGoate Maven / Gradle / Ivy

There is a newer version: 0.15.17.202312051550
Show newest version
package com.thegoate.utils.togoate;

import java.util.Arrays;

import com.thegoate.Goate;
import com.thegoate.annotations.IsDefault;
import com.thegoate.utils.Utility;
import com.thegoate.utils.fill.serialize.Serializer;

/**
 * Converts the given string to a goate collection.
 * If a string, assumes it is in a semicolon separated list of key=value pairs.
 */
@ToGoateUtil()
//@IsDefault
public class StringToGoate implements ToGoateUtility {
	Object takeActionOn;

	public StringToGoate(Object val) {
		takeActionOn = val;
	}

	@Override
	public Goate healthCheck() {
		return null;
	}

	@Override
	public Utility setData(Goate data) {
		return null;
	}

	@Override
	public boolean isType(Object check) {
		return check instanceof String && ((""+check).contains("="));
	}

	@Override
	public ToGoateUtility autoIncrement(boolean increment) {
		return this;
	}

	@Override
	public Goate convert() {
		Goate goate = new Goate();

		if(takeActionOn != null){
			if(takeActionOn instanceof String) {
				goate = processString(goate, ""+takeActionOn);
			} else {
//				goate = new Serializer(takeActionOn, takeActionOn.getClass()).toGoate();
			}
		}
		return goate;
	}

	private Goate processString(Goate goate, String value){
		String[] elements = value.split(";");
		Arrays.stream(elements).forEach(element -> addToGoate(element, goate));
		return goate;
	}

	private void addToGoate(String element, Goate goate){
		String[] keyValue = element.split("=");
		if(keyValue.length == 2){
			goate.put(keyValue[0], keyValue[1]);
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy