org.srplib.conversion.IntegerToLongConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of srp-conversion-support Show documentation
Show all versions of srp-conversion-support Show documentation
Single Responsibility Principle (SRP) libraries collection
package org.srplib.conversion;
/**
* @author Anton Pechinsky
*/
public class IntegerToLongConverter implements Converter {
public Long convert(Integer input) {
return input.longValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy