Fix somar complaints in equals methods
[yangtools.git] / yang / rfc6643-parser-support / src / main / java / org / opendaylight / yangtools / rfc6643 / parser / SubIdEffectiveStatementImpl.java
1 /*
2  * Copyright (c) 2016, 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.rfc6643.parser;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.Objects;
12 import org.opendaylight.yangtools.rfc6643.model.api.SubIdEffectiveStatement;
13 import org.opendaylight.yangtools.rfc6643.model.api.SubIdSchemaNode;
14 import org.opendaylight.yangtools.rfc6643.model.api.SubIdStatement;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.common.Uint32;
17 import org.opendaylight.yangtools.yang.model.api.SchemaNodeDefaults;
18 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
19 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
20 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
22 import org.opendaylight.yangtools.yang.parser.spi.meta.SchemaPathSupport;
23
24 final class SubIdEffectiveStatementImpl extends UnknownEffectiveStatementBase<Uint32, SubIdStatement>
25         implements SubIdEffectiveStatement, SubIdSchemaNode {
26
27     private final SchemaPath path;
28
29     SubIdEffectiveStatementImpl(final Current<Uint32, SubIdStatement> stmt,
30             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
31         super(stmt, substatements);
32         path = SchemaPathSupport.wrap(stmt.getEffectiveParent().getSchemaPath().createChild(getNodeType()));
33     }
34
35     @Override
36     public QName getQName() {
37         return getNodeType();
38     }
39
40     @Override
41     @Deprecated
42     public SchemaPath getPath() {
43         return SchemaNodeDefaults.throwUnsupportedIfNull(this, path);
44     }
45
46     @Override
47     public SubIdEffectiveStatement asEffectiveStatement() {
48         return this;
49     }
50
51     @Override
52     public int hashCode() {
53         return Objects.hash(path, getNodeType(), getNodeParameter());
54     }
55
56     @Override
57     public boolean equals(final Object obj) {
58         if (this == obj) {
59             return true;
60         }
61         if (!(obj instanceof SubIdEffectiveStatementImpl)) {
62             return false;
63         }
64         final SubIdEffectiveStatementImpl other = (SubIdEffectiveStatementImpl) obj;
65         return Objects.equals(getNodeType(), other.getNodeType())
66             && Objects.equals(getNodeParameter(), other.getNodeParameter()) && Objects.equals(path, other.path);
67     }
68 }