Fix {Data,Schema}TreeAwareEffectiveStatement.Namespace
[yangtools.git] / model / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / DataTreeAwareEffectiveStatement.java
1 /*
2  * Copyright (c) 2018 Pantheon Technologies, s.r.o. 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.model.api.stmt;
9
10 import static java.util.Objects.requireNonNull;
11 import static org.opendaylight.yangtools.yang.model.api.stmt.DefaultMethodHelpers.filterOptional;
12
13 import com.google.common.annotations.Beta;
14 import java.util.Optional;
15 import org.eclipse.jdt.annotation.NonNull;
16 import org.eclipse.jdt.annotation.NonNullByDefault;
17 import org.opendaylight.yangtools.yang.common.QName;
18 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
19
20 /**
21  * Interface implemented by all {@link SchemaTreeAwareEffectiveStatement}s which can contain a {@code data tree} child.
22  *
23  * @param <A> Argument type
24  * @param <D> Class representing declared version of this statement.
25  * @author Robert Varga
26  */
27 @Beta
28 public interface DataTreeAwareEffectiveStatement<A, D extends DeclaredStatement<A>>
29         extends SchemaTreeAwareEffectiveStatement<A, D> {
30     /**
31      * Namespace of {@code data node}s. This is a subtree of {@link SchemaTreeAwareEffectiveStatement.Namespace} in that
32      * all data nodes are also schema nodes. The structure of the tree is different, though, as {@code choice}
33      * and {@code case} statements are glossed over and they do not contribute to the tree hierarchy -- only their
34      * children do.
35      *
36      * <p>
37      * This corresponds to the {@code data tree} view of a YANG-defined data.
38      */
39     @NonNullByDefault
40     abstract class Namespace extends EffectiveStatementNamespace<DataTreeEffectiveStatement<?>> {
41         private Namespace() {
42             // Should never be instantiated
43         }
44     }
45
46     /**
47      * Find a {@code data tree} child {@link DataTreeEffectiveStatement}, as identified by its QName argument.
48      *
49      * @param qname Child identifier
50      * @return Data tree child, or empty
51      * @throws NullPointerException if {@code qname} is null
52      */
53     default @NonNull Optional<DataTreeEffectiveStatement<?>> findDataTreeNode(final @NonNull QName qname) {
54         return get(Namespace.class, requireNonNull(qname));
55     }
56
57     /**
58      * Find a {@code data tree} child {@link DataTreeEffectiveStatement}, as identified by its QName argument.
59      *
60      * @param <E> Effective substatement type
61      * @param type Effective substatement class
62      * @param qname Child identifier
63      * @return Data tree child, or empty
64      * @throws NullPointerException if any argument is null
65      */
66     default <E> @NonNull Optional<E> findDataTreeNode(final Class<E> type, final @NonNull QName qname) {
67         return filterOptional(type, findDataTreeNode(qname));
68     }
69 }