BUG-865: Remove ModificationType.MERGE
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / tree / ModificationType.java
1 /*
2  * Copyright (c) 2014 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.api.schema.tree;
9
10 /**
11  * Enumeration of all possible node modification states. These are used in
12  * data tree modification context to quickly assess what sort of modification
13  * the node is undergoing.
14  */
15 public enum ModificationType {
16     /**
17      * Node is currently unmodified.
18      */
19     UNMODIFIED,
20
21     /**
22      * A child node, either direct or indirect, has been modified. This means
23      * that the data representation of this node has potentially changed.
24      */
25     SUBTREE_MODIFIED,
26
27     /**
28      * This node has been placed into the tree, potentially completely replacing
29      * pre-existing contents.
30      */
31     WRITE,
32
33     /**
34      * This node has been deleted along with any of its child nodes.
35      */
36     DELETE,
37 }