cz.jalasoft.util.configuration.key.PropertyKeyExtractor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JalasoftUtils Show documentation
Show all versions of JalasoftUtils Show documentation
A collection of utility classes that might be useful.
The newest version!
package cz.jalasoft.util.configuration.key;
import java.lang.reflect.Method;
/**
* @author Honza Lastovicka ([email protected])
* @since 2016-08-16.
*/
public interface PropertyKeyExtractor {
String key(Method method);
}