Enforce checkstyle in yang-data-util
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / OpenconfigVersionEffectiveStatementImpl.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. 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
9 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
10
11 import com.google.common.annotations.Beta;
12 import java.util.Objects;
13 import javax.annotation.Nonnull;
14 import org.opendaylight.yangtools.concepts.SemVer;
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.stmt.UnknownStatement;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19
20 @Beta
21 public final class OpenconfigVersionEffectiveStatementImpl extends
22         UnknownEffectiveStatementBase<SemVer> {
23
24     private final SchemaPath path;
25
26     public OpenconfigVersionEffectiveStatementImpl(
27             final StmtContext<SemVer, UnknownStatement<SemVer>, ?> ctx) {
28         super(ctx);
29         path = ctx.getParentContext().getSchemaPath().get().createChild(getNodeType());
30     }
31
32     @Nonnull
33     @Override
34     public QName getQName() {
35         return getNodeType();
36     }
37
38     @Nonnull
39     @Override
40     public SchemaPath getPath() {
41         return path;
42     }
43
44     @Override
45     public int hashCode() {
46         final int prime = 31;
47         int result = 1;
48         result = prime * result + Objects.hashCode(path);
49         result = prime * result + Objects.hashCode(getNodeType());
50         result = prime * result + Objects.hashCode(getNodeParameter());
51         return result;
52     }
53
54     @Override
55     public boolean equals(final Object obj) {
56         if (this == obj) {
57             return true;
58         }
59         if (obj == null) {
60             return false;
61         }
62         if (getClass() != obj.getClass()) {
63             return false;
64         }
65         OpenconfigVersionEffectiveStatementImpl other = (OpenconfigVersionEffectiveStatementImpl) obj;
66         if (!Objects.equals(path, other.path)) {
67             return false;
68         }
69         if (!Objects.equals(getNodeType(), other.getNodeType())) {
70             return false;
71         }
72         if (!Objects.equals(getNodeParameter(), other.getNodeParameter())) {
73             return false;
74         }
75         return true;
76     }
77 }