eu.bitwalker.useragentutils.version.fetcher.VersionFetcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of user-agent-utils Show documentation
Show all versions of user-agent-utils Show documentation
Utility classes to handle user-agents.
The newest version!
package eu.bitwalker.useragentutils.version.fetcher;
import eu.bitwalker.useragentutils.Version;
/**
* Interaface that gets string and returns extrancted version
*
* @author alexr
*/
public interface VersionFetcher {
Version version(String str);
}