Do not generate prime when not needed
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / main / java / org / opendaylight / mdsal / binding / java / api / generator / Uint8RangeGenerator.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, 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.mdsal.binding.java.api.generator;
9
10 import org.opendaylight.yangtools.yang.common.Uint8;
11
12 final class Uint8RangeGenerator extends AbstractUnsignedRangeGenerator<Uint8> {
13     Uint8RangeGenerator() {
14         super(Uint8.class, short.class.getName(), Uint8.ZERO, Uint8.MAX_VALUE);
15     }
16
17     @Override
18     @Deprecated
19     protected Uint8 convert(final Number value) {
20         if (value instanceof Byte) {
21             return Uint8.valueOf(value.byteValue());
22         }
23         return Uint8.valueOf(value.toString());
24     }
25
26     @Override
27     protected String format(final Uint8 value) {
28         return "(short)" + value.toCanonicalString();
29     }
30 }