63f9127f325472a51f6be9778c2b9fed1ba40d8b
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / LeafSetEntryNode.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;
9
10 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue;
11
12 /**
13  * Leaf node with multiplicity 0...n.
14  *
15  * <p>
16  * Leaf node has a value, but no child nodes in the data tree, schema
17  * for leaf node and its value is described by
18  * {@link org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode}.
19  *
20  * @param <T>
21  *            Value type
22  */
23 public interface LeafSetEntryNode<T> extends NormalizedNode<NodeWithValue, T>, ValueNode<NodeWithValue, T> {
24     /**
25      * Returns {@link NodeWithValue} which identifies this leaf set entry.
26      * Returned {@link NodeWithValue} contains same value as this node.
27      *
28      * <p>
29      * <h3>Implementation notes</h3> Invocation of
30      * {@link NodeWithValue#getValue()} on returned instance of
31      * {@link NodeWithValue} must returns
32      * same value as invocation of {@link #getValue()}, such as
33      * following condition is allways met:
34      * <code>true == this.getIdentifier().getValue().equals(this.getValue())</code>
35      *
36      * @return {@link NodeWithValue} which identifies this leaf set entry.
37      */
38     @Override
39     NodeWithValue getIdentifier();
40 }