Split out yang-model-ri
[yangtools.git] / yang / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / type / BaseUint16Type.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.common.Uint16;
12 import org.opendaylight.yangtools.yang.model.api.type.Uint16TypeDefinition;
13
14 final class BaseUint16Type extends AbstractRangeRestrictedBaseType<Uint16TypeDefinition, Uint16>
15         implements Uint16TypeDefinition {
16     static final @NonNull BaseUint16Type INSTANCE = new BaseUint16Type();
17
18     private BaseUint16Type() {
19         super(QNAME, Uint16.ZERO, Uint16.MAX_VALUE);
20     }
21
22     @Override
23     public int hashCode() {
24         return Uint16TypeDefinition.hashCode(this);
25     }
26
27     @Override
28     public boolean equals(final Object obj) {
29         return Uint16TypeDefinition.equals(this, obj);
30     }
31
32     @Override
33     public String toString() {
34         return Uint16TypeDefinition.toString(this);
35     }
36 }