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

org.simpleflatmapper.reflect.meta.Table Maven / Gradle / Ivy

Go to download

Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.

There is a newer version: 9.0.2
Show newest version
package org.simpleflatmapper.reflect.meta;

public class Table {

    public static final Table NULL = new Table(null, null, null);

    private final String catalog;
    private final String schema;
    private final String table;

    public Table(String catalog, String schema, String table) {
        this.catalog = catalog;
        this.schema = schema;
        this.table = table;
    }

    public String schema() {
        return schema;
    }

    public String table() {
        return table;
    }

    public String catalog() {
        return catalog;
    }

    public static boolean isNull(Table table) {
        return table == null || table == NULL;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy