Do not pretty-print body class
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / Int8StringCodec.java
1 /*
2  * Copyright (c) 2015 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
9 package org.opendaylight.yangtools.yang.data.impl.codec;
10
11 import org.opendaylight.yangtools.yang.data.api.codec.Int8Codec;
12 import org.opendaylight.yangtools.yang.model.api.type.Int8TypeDefinition;
13
14 final class Int8StringCodec extends AbstractIntegerStringCodec<Byte, Int8TypeDefinition> implements Int8Codec<String> {
15     Int8StringCodec(final Int8TypeDefinition typeDef) {
16         super(typeDef, extractRange(typeDef), Byte.class);
17     }
18
19     @Override
20     protected Byte deserialize(final String stringRepresentation, final int base) {
21         return Byte.valueOf(stringRepresentation, base);
22     }
23 }