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