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

pers.clare.hisql.support.CollectionSqlReplace Maven / Gradle / Ivy

The newest version!
package pers.clare.hisql.support;

import java.util.Collection;

public class CollectionSqlReplace implements SqlReplace> {
    private final Collection value;
    private final String sql;
    private final String emptySql;

    CollectionSqlReplace(Collection value, String sql, String emptySql) {
        this.value = value;
        this.sql = sql;
        this.emptySql = emptySql;
    }

    CollectionSqlReplace(Collection value, String sql) {
        this.value = value;
        this.sql = sql;
        this.emptySql = null;
    }

    @Override
    public Collection getValue() {
        return value;
    }

    @Override
    public String getSql() {
        return value == null || value.isEmpty() ? emptySql : sql;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy