com.jidesoft.converter.FloatConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
/*
* @(#)FloatConverter.java 3/9/2005
*
* Copyright 2002 - 2005 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.converter;
import java.text.NumberFormat;
/**
* Converter which converts Float to String and converts it back.
*/
public class FloatConverter extends NumberConverter {
public FloatConverter() {
}
public FloatConverter(NumberFormat format) {
super(format);
}
public Object fromString(String string, ConverterContext context) {
Number number = parseNumber(string);
return number != null ? number.floatValue() : null;
}
public boolean supportFromString(String string, ConverterContext context) {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy