com.cognitect.transit.impl.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transit-java Show documentation
Show all versions of transit-java Show documentation
Transit is a data format and a set of libraries for conveying values between applications written in different languages. This library provides support for marshalling Transit data to/from Java.
package com.cognitect.transit.impl;
public final class Constants {
public static final char ESC = '~';
public static final String ESC_STR = String.valueOf(ESC);
public static final char TAG = '#';
public static final String TAG_STR = String.valueOf(TAG);
public static final char SUB = '^';
public static final String SUB_STR = String.valueOf(SUB);
public static final char RESERVED = '`';
public static final String ESC_TAG = String.valueOf(ESC) + TAG;
public static final String QUOTE_TAG = ESC_TAG + "'";
public static final String MAP_AS_ARRAY = "^ ";
}