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