Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / RestrictedUint16Type.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.eclipse.jdt.annotation.Nullable;
12 import org.opendaylight.yangtools.yang.common.Uint16;
13 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
14 import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode;
15 import org.opendaylight.yangtools.yang.model.api.type.RangeConstraint;
16 import org.opendaylight.yangtools.yang.model.api.type.Uint16TypeDefinition;
17
18 final class RestrictedUint16Type extends AbstractRangeRestrictedType<Uint16TypeDefinition, Uint16>
19         implements Uint16TypeDefinition {
20     RestrictedUint16Type(final Uint16TypeDefinition baseType, final SchemaPath path,
21             final Collection<UnknownSchemaNode> unknownSchemaNodes,
22             final @Nullable RangeConstraint<Uint16> rangeConstraint) {
23         super(baseType, path, unknownSchemaNodes, rangeConstraint);
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
36     @Override
37     public String toString() {
38         return Uint16TypeDefinition.toString(this);
39     }
40 }