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

kikaha.urouting.converter.DoubleConverter Maven / Gradle / Ivy

There is a newer version: 2.1.10.Final
Show newest version
package kikaha.urouting.converter;

import kikaha.urouting.api.AbstractConverter;
import kikaha.urouting.api.ConversionException;

import javax.enterprise.inject.Typed;
import javax.inject.Singleton;

@Singleton
@Typed( AbstractConverter.class )
public class DoubleConverter extends AbstractConverter {

	@Override
	public Double convert( String value ) throws ConversionException {
		return Double.valueOf( value );
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy