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

JSON.structures.Element Maven / Gradle / Ivy

There is a newer version: 3.2.26
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy