Move yang-common(-netty)
[yangtools.git] / codec / yang-data-codec-binfmt / src / main / java / org / opendaylight / yangtools / yang / data / codec / binfmt / TokenTypes.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.codec.binfmt;
9
10 final class TokenTypes {
11     static final byte SIGNATURE_MARKER = (byte) 0xab;
12
13     /**
14      * Original stream version. Uses a per-stream dictionary for strings. QNames are serialized as three strings.
15      */
16     static final short LITHIUM_VERSION = 1;
17     /**
18      * Revised stream version. Unlike {@link #LITHIUM_VERSION}, QNames and QNameModules are using a per-stream
19      * dictionary, too.
20      */
21     static final short NEON_SR2_VERSION = 2;
22     /**
23      * From-scratch designed version shipping in Sodium SR1.
24      */
25     static final short SODIUM_SR1_VERSION = 3;
26     /**
27      * Magnesium version. Structurally matches {@link #SODIUM_SR1_VERSION}, but does not allow BigIntegers to be
28      * present.
29      */
30     static final short MAGNESIUM_VERSION = 4;
31
32     private TokenTypes() {
33         // Utility class
34     }
35 }