hprose.io.convert.LongConverter Maven / Gradle / Ivy
/**********************************************************\
| |
| hprose |
| |
| Official WebSite: http://www.hprose.com/ |
| http://www.hprose.org/ |
| |
\**********************************************************/
/**********************************************************\
* *
* LongConverter.java *
* *
* LongConverter interface for Java. *
* *
* LastModified: Aug 3, 2016 *
* Author: Ma Bingyao *
* *
\**********************************************************/
package hprose.io.convert;
import hprose.util.DateTime;
import java.lang.reflect.Type;
public class LongConverter implements Converter {
public final static LongConverter instance = new LongConverter();
public Long convertTo(Object obj, Type type) {
if (obj instanceof String) {
return Long.parseLong((String) obj);
}
else if (obj instanceof char[]) {
return Long.parseLong(new String((char[]) obj));
}
else if (obj instanceof DateTime) {
return ((DateTime) obj).toLong();
}
return (Long) obj;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy