JSON.structures.Element Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of progsbase-to-easyjson Show documentation
Show all versions of progsbase-to-easyjson Show documentation
Adapter Progsbase JSON library to easyjson
package JSON.structures;
import JSON.StringElementMaps.StringElementMap;
public class Element {
public ElementType type;
public StringElementMap object;
public Element[] array;
public char[] string;
public double number;
public boolean booleanValue;
}