Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / DerivedUint16Type.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.common.Uint16;
12 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
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.Uint16TypeDefinition;
16
17 final class DerivedUint16Type extends AbstractRangeRestrictedDerivedType<Uint16TypeDefinition, Uint16>
18         implements Uint16TypeDefinition {
19
20     DerivedUint16Type(final Uint16TypeDefinition baseType, final SchemaPath path,
21             final Object defaultValue, final String description, final String reference, final Status status,
22             final String units, final Collection<UnknownSchemaNode> unknownSchemaNodes) {
23         super(baseType, path, defaultValue, description, reference, status, units, unknownSchemaNodes);
24     }
25
26     @Override
27     public int hashCode() {
28         return Uint16TypeDefinition.hashCode(this);
29     }
30
31     @Override
32     public boolean equals(final Object obj) {
33         return Uint16TypeDefinition.equals(this, obj);
34     }
35 }