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

com.github.debugthug.converters.IntConverterTest Maven / Gradle / Ivy

Go to download

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