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

com.jn.sqlhelper.common.ddl.model.internal.FkMutatedRuleConverter Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
package com.jn.sqlhelper.common.ddl.model.internal;

import com.jn.langx.Converter;

public class FkMutatedRuleConverter implements Converter {

    public boolean isConvertible(Class sourceClass, Class targetClass) {
        return sourceClass==Integer.class || sourceClass==Integer.TYPE;
    }

    @Override
    public FkMutatedRule apply(Integer input) {
        return FkMutatedRule.ofCode(input);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy