001/**
002 *   Copyright (C) 2011-2012 Typesafe Inc. <http://typesafe.com>
003 */
004package com.typesafe.config;
005
006/**
007 * The type of a configuration value (following the <a
008 * href="http://json.org">JSON</a> type schema).
009 */
010public enum ConfigValueType {
011    OBJECT, LIST, NUMBER, BOOLEAN, NULL, STRING
012}