io.vertx.up.uca.serialization.Saber Maven / Gradle / Ivy
package io.vertx.up.uca.serialization;
/**
* For field serialization
*/
public interface Saber {
/**
* String to object
*
* @param type
* @param literal
* @return
*/
Object from(Class> type, String literal);
/**
* T to object
*
* @param input
* @param
* @return
*/
Object from(T input);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy