Populate data/ hierarchy
[yangtools.git] / yang / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / type / DerivedDecimalType.java
1 /*
2  * Copyright (c) 2015 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.ri.type;
9
10 import java.math.BigDecimal;
11 import java.util.Collection;
12 import org.opendaylight.yangtools.yang.common.QName;
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.DecimalTypeDefinition;
16
17 final class DerivedDecimalType extends AbstractRangeRestrictedDerivedType<DecimalTypeDefinition, BigDecimal>
18         implements DecimalTypeDefinition {
19     DerivedDecimalType(final DecimalTypeDefinition 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> unknownSchemNodes) {
22         super(baseType, qname, defaultValue, description, reference, status, units, unknownSchemNodes);
23     }
24
25     @Override
26     public int getFractionDigits() {
27         return baseType().getFractionDigits();
28     }
29
30     @Override
31     public int hashCode() {
32         return DecimalTypeDefinition.hashCode(this);
33     }
34
35     @Override
36     public boolean equals(final Object obj) {
37         return DecimalTypeDefinition.equals(this, obj);
38     }
39 }