Use Decimal64.{min,max}ValueIn() in BaseDecimalType
[yangtools.git] / model / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / type / ResolvedLengthConstraint.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.ri.type;
9
10 import com.google.common.collect.RangeSet;
11 import org.opendaylight.yangtools.yang.model.api.ConstraintMetaDefinition;
12 import org.opendaylight.yangtools.yang.model.api.type.LengthConstraint;
13
14 final class ResolvedLengthConstraint extends AbstractConstraint<Integer> implements LengthConstraint {
15     ResolvedLengthConstraint(final ConstraintMetaDefinition meta, final RangeSet<Integer> ranges) {
16         super(meta, ranges);
17     }
18
19     @Override
20     public RangeSet<Integer> getAllowedRanges() {
21         return ranges();
22     }
23 }