Populate data/ hierarchy
[yangtools.git] / model / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / type / DerivedUint64Type.java
1 /*
2  * Copyright (c) 2017 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 java.util.Collection;
11 import org.opendaylight.yangtools.yang.common.QName;
12 import org.opendaylight.yangtools.yang.common.Uint64;
13 import org.opendaylight.yangtools.yang.model.api.Status;
14 import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode;
15 import org.opendaylight.yangtools.yang.model.api.type.Uint64TypeDefinition;
16
17 final class DerivedUint64Type extends AbstractRangeRestrictedDerivedType<Uint64TypeDefinition, Uint64>
18         implements Uint64TypeDefinition {
19     DerivedUint64Type(final Uint64TypeDefinition baseType, final QName qname, final Object defaultValue,
20             final String description, final String reference, final Status status, final String units,
21             final Collection<? extends UnknownSchemaNode> unknownSchemaNodes) {
22         super(baseType, qname, defaultValue, description, reference, status, units, unknownSchemaNodes);
23     }
24
25     @Override
26     public int hashCode() {
27         return Uint64TypeDefinition.hashCode(this);
28     }
29
30     @Override
31     public boolean equals(final Object obj) {
32         return Uint64TypeDefinition.equals(this, obj);
33     }
34 }