Update SchemaPath.getPath() implementation
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / leaf_list / EmptyLeafListEffectiveStatement.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, 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.parser.rfc7950.stmt.leaf_list;
9
10 import com.google.common.collect.ImmutableList;
11 import com.google.common.collect.ImmutableSet;
12 import java.util.Collection;
13 import java.util.Optional;
14 import org.opendaylight.yangtools.yang.model.api.ElementCountConstraint;
15 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
16 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
17 import org.opendaylight.yangtools.yang.model.api.stmt.LeafListStatement;
18
19 final class EmptyLeafListEffectiveStatement extends AbstractLeafListEffectiveStatement {
20     EmptyLeafListEffectiveStatement(final LeafListStatement declared, final Object path, final int flags,
21             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
22         super(declared, path, flags, substatements);
23     }
24
25     EmptyLeafListEffectiveStatement(final EmptyLeafListEffectiveStatement original, final Object path,
26             final int flags) {
27         super(original, path, flags);
28     }
29
30     @Override
31     public Optional<LeafSchemaNode> getOriginal() {
32         return Optional.empty();
33     }
34
35     @Override
36     public Collection<Object> getDefaults() {
37         return ImmutableSet.of();
38     }
39
40     @Override
41     public Optional<ElementCountConstraint> getElementCountConstraint() {
42         return Optional.empty();
43     }
44 }