50260fe081b21bca7375bec99a87a3988a5ceb75
[mdsal.git] / binding2 / mdsal-binding2-java-api-generator / src / main / java / org / opendaylight / mdsal / binding / javav2 / java / api / generator / rangeGenerators / Uint8RangeGenerator.java
1 /*
2  * Copyright (c) 2017 Cisco Systems, Inc. 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.mdsal.binding.javav2.java.api.generator.rangeGenerators;
9
10 import org.opendaylight.yangtools.yang.common.Uint8;
11
12 final class Uint8RangeGenerator extends AbstractUnsignedIntegerRangeGenerator<Uint8> {
13     Uint8RangeGenerator() {
14         super(Uint8.class, Uint8.class.getName(), Uint8.valueOf(0), Uint8.valueOf(255));
15     }
16
17     @Override
18     protected Uint8 convert(final Number value) {
19         return Uint8.valueOf(value.shortValue());
20     }
21 }