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