Fix checkstyle in mdsal-binding2-java-api-generator
[mdsal.git] / binding2 / mdsal-binding2-java-api-generator / src / main / java / org / opendaylight / mdsal / binding / javav2 / java / api / generator / range_generators / Uint16RangeGenerator.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.range_generators;
9
10 import org.opendaylight.yangtools.yang.common.Uint16;
11
12 final class Uint16RangeGenerator extends AbstractUnsignedIntegerRangeGenerator<Uint16> {
13     Uint16RangeGenerator() {
14         super(Uint16.class, Uint16.class.getName(), Uint16.valueOf(0), Uint16.valueOf(65535));
15     }
16
17     @Override
18     protected Uint16 convert(final Number value) {
19         return Uint16.valueOf(value.intValue());
20     }
21 }