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.SchemaNodeDefaults;
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.EffectiveStmtCtx.Current;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.SchemaPathSupport;
22
23 final class ImpliedEffectiveStatementImpl extends UnknownEffectiveStatementBase<String, ImpliedStatement>
24         implements ImpliedEffectiveStatement, ImpliedSchemaNode {
25
26     private final SchemaPath path;
27
28     ImpliedEffectiveStatementImpl(final Current<String, ImpliedStatement> stmt,
29             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
30         super(stmt, substatements);
31         path = SchemaPathSupport.wrap(stmt.getEffectiveParent().getSchemaPath().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 SchemaNodeDefaults.throwUnsupportedIfNull(this, path);
43     }
44
45     @Override
46     public ImpliedEffectiveStatement 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 ImpliedEffectiveStatementImpl)) {
61             return false;
62         }
63         final ImpliedEffectiveStatementImpl other = (ImpliedEffectiveStatementImpl) obj;
64         return Objects.equals(getNodeType(), other.getNodeType())
65             && Objects.equals(getNodeParameter(), other.getNodeParameter()) && Objects.equals(path, other.path);
66     }
67 }