com.payneteasy.superfly.client.LowercaseTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of superfly-client Show documentation
Show all versions of superfly-client Show documentation
Contains classes used to use Superfly facilities by clients
package com.payneteasy.superfly.client;
/**
* Transformer which converts string to lowercase.
*
* @author Roman Puchkovskiy
*/
public class LowercaseTransformer implements StringTransformer {
public String transform(String s) {
return s.toLowerCase();
}
}