fitnesse.slim.converters.PrimitiveCharConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
package fitnesse.slim.converters;
public class PrimitiveCharConverter extends CharConverter {
public static final Character DEFAULT_VALUE = Character.MIN_VALUE;
@Override
public Character fromString(String arg) {
Character c = super.fromString(arg);
return c != null ? c : DEFAULT_VALUE;
}
}