Merge "BUG 2221 : Add metering to ShardTransaction actor"
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / NodeTypes.java
1 /*
2  *
3  *  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  *  This program and the accompanying materials are made available under the
6  *  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  *  and is available at http://www.eclipse.org/legal/epl-v10.html
8  *
9  */
10
11 package org.opendaylight.controller.cluster.datastore.node.utils.stream;
12
13 public class NodeTypes {
14
15     public static final byte LEAF_NODE = 1;
16     public static final byte LEAF_SET = 2;
17     public static final byte LEAF_SET_ENTRY_NODE = 3;
18     public static final byte CONTAINER_NODE = 4;
19     public static final byte UNKEYED_LIST = 5;
20     public static final byte UNKEYED_LIST_ITEM = 6;
21     public static final byte MAP_NODE = 7;
22     public static final byte MAP_ENTRY_NODE = 8;
23     public static final byte ORDERED_MAP_NODE = 9;
24     public static final byte CHOICE_NODE = 10;
25     public static final byte AUGMENTATION_NODE = 11;
26     public static final byte ANY_XML_NODE = 12;
27     public static final byte END_NODE = 13;
28
29 }