Fix javadoc to comply with JDK14
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / DataContainerNode.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 java.util.Collection;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
12
13 /**
14  * Abstract node which does not have value but contains valid {@link DataContainerChild} nodes. Schema of this node is
15  * described by instance of {@link org.opendaylight.yangtools.yang.model.api.DataNodeContainer}.
16  *
17  * <h2>Implementation notes</h2>
18  * This interface should not be implemented directly, but rather implementing one of it's subclasses
19  * <ul>
20  *   <li>{@link ContainerNode}
21  *   <li>{@link MapEntryNode}
22  *   <li>{@link UnkeyedListEntryNode}
23  *   <li>{@link ChoiceNode}
24  *   <li>{@link AugmentationNode}
25  * </ul>
26  *
27  * @param <K> {@link PathArgument} which identifies instance of {@link DataContainerNode}
28  */
29 public interface DataContainerNode<K extends PathArgument> extends
30         NormalizedNodeContainer<K, PathArgument, DataContainerChild<? extends PathArgument, ?>> {
31     /**
32      * Returns iteration of all child nodes. Order of returned child nodes may be defined by subinterfaces.
33      *
34      * <p>
35      * <b>Implementation Notes:</b>
36      * All nodes returned in this iterable, MUST also be accessible via {@link #getChild(PathArgument)} using their
37      * associated identifier.
38      *
39      * @return Iteration of all child nodes
40      */
41     @Override
42     Collection<DataContainerChild<? extends PathArgument, ?>> getValue();
43 }