7b9a5d4611dc5bd61eda6fb010a03b9d7da85180
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / LeafNode.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.NodeIdentifier;
11
12 /**
13  * Leaf node with multiplicity 0..1.
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 {@link org.opendaylight.yangtools.yang.model.api.LeafSchemaNode}.
18  *
19  * @param <T> Value type
20  */
21 public interface LeafNode<T> extends ValueNode<T>, DataContainerChild {
22     @Override
23     NodeIdentifier getIdentifier();
24 }