Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / DecimalTypeBuilder.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.util.type;
9
10 import com.google.common.base.Preconditions;
11 import java.math.BigDecimal;
12 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
13 import org.opendaylight.yangtools.yang.model.api.type.DecimalTypeDefinition;
14
15 public final class DecimalTypeBuilder extends RangeRestrictedTypeBuilder<DecimalTypeDefinition, BigDecimal> {
16     private Integer fractionDigits;
17
18     DecimalTypeBuilder(final SchemaPath path) {
19         super(null, path);
20     }
21
22     public DecimalTypeBuilder setFractionDigits(final int fractionDigits) {
23         Preconditions.checkState(this.fractionDigits == null, "Fraction digits already defined to %s",
24                 this.fractionDigits);
25         this.fractionDigits = fractionDigits;
26         return this;
27     }
28
29     @Override
30     DecimalTypeDefinition buildType() {
31         Preconditions.checkState(fractionDigits != null, "Fraction digits not defined");
32
33         return new BaseDecimalType(getPath(), getUnknownSchemaNodes(), fractionDigits,
34             calculateRangeConstraint(BaseDecimalType.constraintsForDigits(fractionDigits)));
35     }
36 }