Fix checkstyle in mdsal-binding2-generator-util
[mdsal.git] / binding2 / mdsal-binding2-java-api-generator / src / main / java / org / opendaylight / mdsal / binding / javav2 / java / api / generator / range_generators / Uint32RangeGenerator.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.Uint32;
11
12 final class Uint32RangeGenerator extends AbstractUnsignedIntegerRangeGenerator<Uint32> {
13     Uint32RangeGenerator() {
14         super(Uint32.class, Uint32.class.getName(), Uint32.valueOf(0),
15             Uint32.valueOf(0xffffffffL));
16     }
17
18     @Override
19     protected Uint32 convert(final Number value) {
20         return Uint32.valueOf(value.longValue());
21     }
22 }