All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hprose.io.convert.ByteConverter Maven / Gradle / Ivy

/**********************************************************\
|                                                          |
|                          hprose                          |
|                                                          |
| Official WebSite: http://www.hprose.com/                 |
|                   http://www.hprose.org/                 |
|                                                          |
\**********************************************************/
/**********************************************************\
 *                                                        *
 * ByteConverter.java                                     *
 *                                                        *
 * ByteConverter interface for Java.                      *
 *                                                        *
 * LastModified: Aug 3, 2016                              *
 * Author: Ma Bingyao                   *
 *                                                        *
\**********************************************************/
package hprose.io.convert;

import java.lang.reflect.Type;

public class ByteConverter implements Converter {

    public final static ByteConverter instance = new ByteConverter();

    public Byte convertTo(Object obj, Type type) {
        if (obj instanceof String) {
            return Byte.parseByte((String) obj);
        }
        else if (obj instanceof char[]) {
            return Byte.parseByte(new String((char[]) obj));
        }
        return (Byte) obj;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy