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

ru.fix.dynamic.property.api.marshaller.DynamicPropertyMarshaller Maven / Gradle / Ivy

There is a newer version: 2.0.8
Show newest version
package ru.fix.dynamic.property.api.marshaller;

import ru.fix.dynamic.property.api.marshaller.exception.DynamicPropertySerializationException;

/**
 * @author Ayrat Zulkarnyaev
 */
public interface DynamicPropertyMarshaller {

    String marshall(Object marshalledObject) throws DynamicPropertySerializationException;

     T unmarshall(String rawString, Class clazz) throws DynamicPropertySerializationException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy