YANGTOOLS-621: introduce specialized integer types
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / DerivedUint32Type.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.util.type;
9
10 import java.util.Collection;
11 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
12 import org.opendaylight.yangtools.yang.model.api.Status;
13 import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode;
14 import org.opendaylight.yangtools.yang.model.api.type.Uint32TypeDefinition;
15
16 final class DerivedUint32Type extends AbstractRangeRestrictedDerivedType<Uint32TypeDefinition>
17         implements Uint32TypeDefinition {
18
19     DerivedUint32Type(final Uint32TypeDefinition baseType, final SchemaPath path,
20             final Object defaultValue, final String description, final String reference, final Status status,
21             final String units, final Collection<UnknownSchemaNode> unknownSchemaNodes) {
22         super(baseType, path, defaultValue, description, reference, status, units, unknownSchemaNodes);
23     }
24
25     @Override
26     public int hashCode() {
27         return TypeDefinitions.hashCode(this);
28     }
29
30     @Override
31     public boolean equals(final Object obj) {
32         return TypeDefinitions.equals(this, obj);
33     }
34 }