Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseInt32Type.java
1 /*
2  * Copyright (c) 2015 Pantheon Technologies 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.yang.model.util.type;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.yang.model.api.type.Int32TypeDefinition;
12 import org.opendaylight.yangtools.yang.model.util.BaseTypes;
13
14 final class BaseInt32Type extends AbstractRangeRestrictedBaseType<Int32TypeDefinition, Integer>
15         implements Int32TypeDefinition {
16     static final @NonNull BaseInt32Type INSTANCE = new BaseInt32Type();
17
18     private BaseInt32Type() {
19         super(BaseTypes.INT32_QNAME, Integer.MIN_VALUE, Integer.MAX_VALUE);
20     }
21
22     @Override
23     public int hashCode() {
24         return Int32TypeDefinition.hashCode(this);
25     }
26
27     @Override
28     public boolean equals(final Object obj) {
29         return Int32TypeDefinition.equals(this, obj);
30     }
31
32     @Override
33     public String toString() {
34         return Int32TypeDefinition.toString(this);
35     }
36
37 }