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