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

fitnesse.slim.converters.PrimitiveDoubleConverter Maven / Gradle / Ivy

There is a newer version: 20241207
Show newest version
package fitnesse.slim.converters;

public class PrimitiveDoubleConverter extends DoubleConverter {
  public static final Double DEFAULT_VALUE = Double.valueOf(0);

  @Override
  public Double fromString(String arg) {
    Double d = super.fromString(arg);
    return d != null ? d : DEFAULT_VALUE;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy