com.v5analytics.webster.ParameterValueConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webster Show documentation
Show all versions of webster Show documentation
Minimalist web framework, that has an express.js like API.
package com.v5analytics.webster;
public interface ParameterValueConverter {
Object toValue(Class parameterType, String parameterName, String[] value);
}