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