blob: 7c97f3c4ab36162c017bf69dd618563aa6dc0eac [file] [log] [blame]
package org.apache.tapestry5.json;
/**
* Represents the different data types supported by JSON.
* Mostly used for descriptive reasons in exceptions.
*/
public enum JSONType
{
BOOLEAN, STRING, NUMBER, OBJECT, ARRAY, ANY;
}