Use Objects.hashCode()
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / LengthConstraintImpl.java
1 /*
2  * Copyright (c) 2014 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.model.util;
9
10 import com.google.common.base.Optional;
11 import com.google.common.base.Preconditions;
12 import java.util.Objects;
13 import org.opendaylight.yangtools.concepts.Immutable;
14 import org.opendaylight.yangtools.yang.model.api.type.LengthConstraint;
15
16 /**
17  * {@link Immutable} implementation of {@link LengthConstraint}.
18  *
19  * Length constraint based on supplied parameters with additional behaviour:
20  *
21  * <ul>
22  * <li>{@link LengthConstraint#getErrorAppTag()} returns
23  * <code>length-out-of-specified-bounds</code>
24  * <li>{@link LengthConstraint#getErrorMessage() returns <code>The argument is
25  * out of bounds &lt;<i>min</i>, <i>max</i> &gt;</code>
26  * </ul
27  */
28 final class LengthConstraintImpl implements LengthConstraint, Immutable {
29
30     private final Number min;
31     private final Number max;
32
33     private final String description;
34     private final String reference;
35
36     private final String errorAppTag;
37     private final String errorMessage;
38
39     LengthConstraintImpl(final Number min, final Number max, final Optional<String> description,
40             final Optional<String> reference) {
41         super();
42         this.min = Preconditions.checkNotNull(min, "min must not be null.");
43         this.max = Preconditions.checkNotNull(max, "max must not be null");
44         this.description = description.orNull();
45         this.reference = reference.orNull();
46
47         this.errorAppTag = "length-out-of-specified-bounds";
48         this.errorMessage = "The argument is out of bounds <" + min + ", " + max + ">";
49     }
50
51     @Override
52     public String getDescription() {
53         return description;
54     }
55
56     @Override
57     public String getErrorAppTag() {
58         return errorAppTag;
59     }
60
61     @Override
62     public String getErrorMessage() {
63         return errorMessage;
64     }
65
66     @Override
67     public String getReference() {
68         return reference;
69     }
70
71     @Override
72     public Number getMin() {
73         return min;
74     }
75
76     @Override
77     public Number getMax() {
78         return max;
79     }
80
81     @Override
82     public int hashCode() {
83         final int prime = 31;
84         int result = 1;
85         result = prime * result + Objects.hashCode(description);
86         result = prime * result + errorAppTag.hashCode();
87         result = prime * result + errorMessage.hashCode();
88         result = prime * result + max.hashCode();
89         result = prime * result + min.hashCode();
90         result = prime * result + Objects.hashCode(reference);
91         return result;
92     }
93
94     @Override
95     public boolean equals(final Object obj) {
96         if (this == obj) {
97             return true;
98         }
99         if (obj == null) {
100             return false;
101         }
102         if (getClass() != obj.getClass()) {
103             return false;
104         }
105         final LengthConstraintImpl other = (LengthConstraintImpl) obj;
106         if (description == null) {
107             if (other.description != null) {
108                 return false;
109             }
110         } else if (!description.equals(other.description)) {
111             return false;
112         }
113         if (errorAppTag == null) {
114             if (other.errorAppTag != null) {
115                 return false;
116             }
117         } else if (!errorAppTag.equals(other.errorAppTag)) {
118             return false;
119         }
120         if (errorMessage == null) {
121             if (other.errorMessage != null) {
122                 return false;
123             }
124         } else if (!errorMessage.equals(other.errorMessage)) {
125             return false;
126         }
127         if (max != other.max) {
128             return false;
129         }
130         if (min != other.min) {
131             return false;
132         }
133         if (reference == null) {
134             if (other.reference != null) {
135                 return false;
136             }
137         } else if (!reference.equals(other.reference)) {
138             return false;
139         }
140         return true;
141     }
142
143     @Override
144     public String toString() {
145         StringBuilder builder = new StringBuilder();
146         builder.append("LengthConstraintImpl [min=");
147         builder.append(min);
148         builder.append(", max=");
149         builder.append(max);
150         builder.append(", description=");
151         builder.append(description);
152         builder.append(", errorAppTag=");
153         builder.append(errorAppTag);
154         builder.append(", reference=");
155         builder.append(reference);
156         builder.append(", errorMessage=");
157         builder.append(errorMessage);
158         builder.append("]");
159         return builder.toString();
160     }
161 }