Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / RestrictedUint64Type.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.Uint64;
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.Uint64TypeDefinition;
17
18 final class RestrictedUint64Type extends AbstractRangeRestrictedType<Uint64TypeDefinition, Uint64>
19         implements Uint64TypeDefinition {
20     RestrictedUint64Type(final Uint64TypeDefinition baseType, final SchemaPath path,
21             final Collection<UnknownSchemaNode> unknownSchemaNodes,
22             final @Nullable RangeConstraint<Uint64> rangeConstraint) {
23         super(baseType, path, unknownSchemaNodes, rangeConstraint);
24     }
25
26     @Override
27     public int hashCode() {
28         return Uint64TypeDefinition.hashCode(this);
29     }
30
31     @Override
32     public boolean equals(final Object obj) {
33         return Uint64TypeDefinition.equals(this, obj);
34     }
35
36     @Override
37     public String toString() {
38         return Uint64TypeDefinition.toString(this);
39     }
40 }