Populate data/ hierarchy
[yangtools.git] / yang / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / type / BaseInt16Type.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.ri.type;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.yang.model.api.type.Int16TypeDefinition;
12 import org.opendaylight.yangtools.yang.model.api.type.TypeDefinitions;
13
14 final class BaseInt16Type extends AbstractRangeRestrictedBaseType<Int16TypeDefinition, Short>
15         implements Int16TypeDefinition {
16     static final @NonNull BaseInt16Type INSTANCE = new BaseInt16Type();
17
18     private BaseInt16Type() {
19         super(TypeDefinitions.INT16, Short.MIN_VALUE, Short.MAX_VALUE);
20     }
21
22     @Override
23     public int hashCode() {
24         return Int16TypeDefinition.hashCode(this);
25     }
26
27     @Override
28     public boolean equals(final Object obj) {
29         return Int16TypeDefinition.equals(this, obj);
30     }
31
32     @Override
33     public String toString() {
34         return Int16TypeDefinition.toString(this);
35     }
36 }