com.silentgo.json.common.Key Maven / Gradle / Ivy
package com.silentgo.json.common;
/**
* Project : SilentGo
* Package : com.silentgo.json
*
* @author teddyzhu
*
* Created by teddyzhu on 2017/1/4.
*/
public class Key {
public static final byte OBJECT_START = '{';
public static final byte OBJECT_END = '}';
public static final byte ARRAY_START = '[';
public static final byte ARRAY_END = ']';
public static final byte STRING_SPLIT = '"';
public static final byte VALUE_COL = ':';
public static final byte NUMBER_VAL_SIGN = '-';
public static final byte NUMBER_VAL0 = '0';
public static final byte NUMBER_VAL1 = '1';
public static final byte NUMBER_VAL2 = '2';
public static final byte NUMBER_VAL3 = '3';
public static final byte NUMBER_VAL4 = '4';
public static final byte NUMBER_VAL5 = '5';
public static final byte NUMBER_VAL6 = '6';
public static final byte NUMBER_VAL7 = '7';
public static final byte NUMBER_VAL8 = '8';
public static final byte NUMBER_VAL9 = '9';
public static final byte NUMBER_INTERVAL = '.';
public static final byte NULL = 'n';
public static final byte OBJECT_SPLIT = ',';
public static final char BOOL_TRUE = 't';
public static final char BOOL_FALSE = 'f';
}