Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / config / EmptyConfigStatement.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 package org.opendaylight.yangtools.yang.parser.rfc7950.stmt.config;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.Collection;
12 import java.util.Objects;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
15 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
16 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
17 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
18 import org.opendaylight.yangtools.yang.model.api.meta.StatementSource;
19 import org.opendaylight.yangtools.yang.model.api.stmt.ConfigStatement;
20
21 abstract class EmptyConfigStatement implements ConfigStatement {
22     static final @NonNull ConfigStatement FALSE = new EmptyConfigStatement() {
23         @Override
24         public Boolean argument() {
25             return Boolean.FALSE;
26         }
27
28         @Override
29         EffectiveStatement<Boolean, ConfigStatement> toEffective() {
30             return EmptyConfigEffectiveStatement.FALSE;
31         }
32     };
33
34     static final @NonNull ConfigStatement TRUE = new EmptyConfigStatement() {
35         @Override
36         public Boolean argument() {
37             return Boolean.TRUE;
38         }
39
40         @Override
41         EffectiveStatement<Boolean, ConfigStatement> toEffective() {
42             return EmptyConfigEffectiveStatement.TRUE;
43         }
44     };
45
46     abstract EffectiveStatement<Boolean, ConfigStatement> toEffective();
47
48     @Override
49     public final Collection<? extends DeclaredStatement<?>> declaredSubstatements() {
50         return ImmutableList.of();
51     }
52
53     @Override
54     public final StatementDefinition statementDefinition() {
55         return YangStmtMapping.CONFIG;
56     }
57
58     @Override
59     public final String rawArgument() {
60         return Boolean.toString(getValue());
61     }
62
63     @Override
64     public final StatementSource getStatementSource() {
65         return StatementSource.DECLARATION;
66     }
67
68     @Override
69     public final int hashCode() {
70         return Objects.hash(statementDefinition(), getStatementSource(), argument(), rawArgument(),
71             declaredSubstatements(), getValue());
72     }
73
74     @Override
75     public final boolean equals(final Object obj) {
76         if (this == obj) {
77             return true;
78         }
79         if (!(obj instanceof ConfigStatement)) {
80             return false;
81         }
82
83         final ConfigStatement other = (ConfigStatement) obj;
84
85         return getValue() == other.getValue() && argument().equals(other.argument())
86                 && rawArgument().equals(other.rawArgument())
87                 && statementDefinition().equals(other.statementDefinition())
88                 && getStatementSource().equals(other.getStatementSource())
89                 && declaredSubstatements().equals(other.declaredSubstatements());
90     }
91 }