Fix eclipse/checkstyle warnings
[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.AttributesContainer;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
12
13 /**
14  * Leaf node with multiplicity 0..1.
15  *
16  * <p>
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 {@link org.opendaylight.yangtools.yang.model.api.LeafSchemaNode}.
19  *
20  * @param <T> Value type
21  */
22 public interface LeafNode<T> extends AttributesContainer, DataContainerChild<NodeIdentifier, T>,
23         ValueNode<NodeIdentifier, T> {
24     /**
25      * Returns value of this leaf node.
26      *
27      * @return Returned value of this leaf node. Value SHOULD meet criteria defined by schema.
28      */
29     @Override
30     T getValue();
31 }