![JAR search and dependency download from the Maven repository](/logo.png)
com.github.debugthug.converters.IntConverterTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of TruJet Show documentation
Show all versions of TruJet Show documentation
Simple library having an App to test the XML requests and responses of TruJet.
The newest version!
package com.github.debugthug.converters;
import com.thoughtworks.xstream.converters.basic.AbstractSingleValueConverter;
public class IntConverterTest extends AbstractSingleValueConverter {
@SuppressWarnings("rawtypes")
public boolean canConvert(Class type) {
return type.equals(int.class) || type.equals(Integer.class);
}
public Object fromString(String str) {
if (str.compareTo("") == 0)
str = "0";
return Integer.valueOf(str);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy