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