Staging
v0.5.1
Raw File
package org.pulloid;

public interface StringTransformer<T> {
	
	T transform(String value);

}
back to top