Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / 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.util.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 import org.opendaylight.yangtools.yang.model.util.BaseTypes;
14
15 final class BaseUint16Type extends AbstractRangeRestrictedBaseType<Uint16TypeDefinition, Uint16>
16         implements Uint16TypeDefinition {
17     static final @NonNull BaseUint16Type INSTANCE = new BaseUint16Type();
18
19     private BaseUint16Type() {
20         super(BaseTypes.UINT16_QNAME, Uint16.valueOf(0), Uint16.valueOf(65535));
21     }
22
23     @Override
24     public int hashCode() {
25         return Uint16TypeDefinition.hashCode(this);
26     }
27
28     @Override
29     public boolean equals(final Object obj) {
30         return Uint16TypeDefinition.equals(this, obj);
31     }
32
33     @Override
34     public String toString() {
35         return Uint16TypeDefinition.toString(this);
36     }
37 }