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

io.github.kiryu1223.drink.ext.NoConverter Maven / Gradle / Ivy

There is a newer version: 1.0.14
Show newest version
package io.github.kiryu1223.drink.ext;

import io.github.kiryu1223.drink.core.metaData.PropertyMetaData;

public class NoConverter implements IConverter
{
    @Override
    public Object toDb(Object value, PropertyMetaData propertyMetaData)
    {
        return value;
    }

    @Override
    public Object toJava(Object value, PropertyMetaData propertyMetaData)
    {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy