Fix somar complaints in equals methods
[yangtools.git] / yang / rfc6643-parser-support / src / main / java / org / opendaylight / yangtools / rfc6643 / parser / ImpliedEffectiveStatementImpl.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.ImpliedEffectiveStatement;
13 import org.opendaylight.yangtools.rfc6643.model.api.ImpliedSchemaNode;
14 import org.opendaylight.yangtools.rfc6643.model.api.ImpliedStatement;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
17 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
18 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
19 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
20
21 final class ImpliedEffectiveStatementImpl extends UnknownEffectiveStatementBase<String, ImpliedStatement>
22         implements ImpliedEffectiveStatement, ImpliedSchemaNode {
23
24     private final SchemaPath path;
25
26     ImpliedEffectiveStatementImpl(final ImpliedStatement declared,
27             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements,
28             final StmtContext<String, ImpliedStatement, ?> ctx) {
29         super(ctx.getStatementArgument(), declared, substatements, ctx);
30         path = ctx.coerceParentContext().getSchemaPath().get().createChild(getNodeType());
31     }
32
33     @Override
34     public QName getQName() {
35         return getNodeType();
36     }
37
38     @Override
39     @Deprecated
40     public SchemaPath getPath() {
41         return path;
42     }
43
44     @Override
45     public ImpliedEffectiveStatement asEffectiveStatement() {
46         return this;
47     }
48
49     @Override
50     public int hashCode() {
51         return Objects.hash(path, getNodeType(), getNodeParameter());
52     }
53
54     @Override
55     public boolean equals(final Object obj) {
56         if (this == obj) {
57             return true;
58         }
59         if (!(obj instanceof ImpliedEffectiveStatementImpl)) {
60             return false;
61         }
62         final ImpliedEffectiveStatementImpl other = (ImpliedEffectiveStatementImpl) obj;
63         return Objects.equals(getNodeType(), other.getNodeType())
64             && Objects.equals(getNodeParameter(), other.getNodeParameter()) && Objects.equals(path, other.path);
65     }
66 }