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

org.zbus.json.parser.ContainerFactory Maven / Gradle / Ivy

The newest version!
package org.zbus.json.parser;

import java.util.List;
import java.util.Map;

public interface ContainerFactory {
	/**
	 * @return A Map instance to store JSON object, or null if you want to use org.json.simple.JSONObject.
	 */
	Map createObjectContainer();
	
	/**
	 * @return A List instance to store JSON array, or null if you want to use org.json.simple.JSONArray. 
	 */
	List creatArrayContainer();
}