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

org.tinygroup.nettyremote.codec.serialization.BigDecimalDeserializer Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package org.tinygroup.nettyremote.codec.serialization;

import java.math.BigDecimal;

import com.caucho.hessian.io.AbstractStringValueDeserializer;

public class BigDecimalDeserializer extends AbstractStringValueDeserializer {

	@Override
	public Class getType() {
		return BigDecimal.class;
	}

	@Override
	protected Object create(String value) {
		if (null != value) {
			return new BigDecimal(value);
		} else {
			return null;
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy