001package org.apache.tapestry5.json;
002
003/**
004 * Represents the different data types supported by JSON.
005 * Mostly used for descriptive reasons in exceptions.
006 */
007public enum JSONType
008{
009
010    BOOLEAN, STRING, NUMBER, OBJECT, ARRAY, ANY;
011}