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

com.firefly.utils.json.serializer.SimpleArraySerializer Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.utils.json.serializer;

import com.firefly.utils.json.Serializer;

public abstract class SimpleArraySerializer implements Serializer {

	protected boolean primitive;

	public SimpleArraySerializer(boolean primitive) {
		this.primitive = primitive;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy