f73205954f4a4a2a8467080e7da49151117f5b88
[yangtools.git] / yang / yang-model-spi / src / main / java / org / opendaylight / yangtools / yang / model / spi / 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.spi.type;
9
10 import java.util.Collection;
11 import org.opendaylight.yangtools.yang.common.QName;
12 import org.opendaylight.yangtools.yang.common.Uint32;
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.Uint32TypeDefinition;
16
17 final class DerivedUint32Type extends AbstractRangeRestrictedDerivedType<Uint32TypeDefinition, Uint32>
18         implements Uint32TypeDefinition {
19     DerivedUint32Type(final Uint32TypeDefinition 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     private DerivedUint32Type(final DerivedUint32Type original, final QName newQName) {
26         super(original, newQName);
27     }
28
29     @Override
30     DerivedUint32Type bindTo(final QName newQName) {
31         return new DerivedUint32Type(this, newQName);
32     }
33
34     @Override
35     public int hashCode() {
36         return Uint32TypeDefinition.hashCode(this);
37     }
38
39     @Override
40     public boolean equals(final Object obj) {
41         return Uint32TypeDefinition.equals(this, obj);
42     }
43 }