All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.up.uca.serialization.Saber Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
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