Use Decimal64.{min,max}ValueIn() in BaseDecimalType
[yangtools.git] / model / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / type / ResolvedRangeConstraint.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.eclipse.jdt.annotation.NonNull;
12 import org.opendaylight.yangtools.yang.model.api.ConstraintMetaDefinition;
13 import org.opendaylight.yangtools.yang.model.api.type.RangeConstraint;
14
15 final class ResolvedRangeConstraint<T extends Number & Comparable<T>>
16         extends AbstractConstraint<@NonNull T> implements RangeConstraint<T> {
17     ResolvedRangeConstraint(final ConstraintMetaDefinition meta, final RangeSet<T> ranges) {
18         super(meta, ranges);
19     }
20
21     @Override
22     public RangeSet<@NonNull T> getAllowedRanges() {
23         return ranges();
24     }
25 }