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

com.newpixelcoffee.odin.adapters.OdinInlineAdapter Maven / Gradle / Ivy

package com.newpixelcoffee.odin.adapters;

import com.newpixelcoffee.odin.ObjectType;

/**
 * You can use this adapter to convert an object to another object, like Date to a String
 * @param  the type to convert
 * @param  the result type
 */
public interface OdinInlineAdapter extends OdinAdapter {
    T read(ObjectType type, R o);
    R write(ObjectType type, T o);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy