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

com.firefly.utils.json.JsonStringSymbol Maven / Gradle / Ivy

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

public interface JsonStringSymbol {
	char QUOTE = '"';
	char ARRAY_PRE = '[';
	char ARRAY_SUF = ']';
	char OBJ_PRE = '{';
	char OBJ_SUF = '}';
	char SEPARATOR = ',';
	char OBJ_SEPARATOR = ':';
	char[] EMPTY_ARRAY = "[]".toCharArray();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy