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

io.github.sinri.keel.mysql.matrix.AbstractTableRow Maven / Gradle / Ivy

Go to download

A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.

The newest version!
package io.github.sinri.keel.mysql.matrix;

import io.vertx.core.json.JsonObject;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

/**
 * @since 2.0
 * @since 2.8 rename and remove
 */
public abstract class AbstractTableRow extends SimpleResultRow {
    public AbstractTableRow(@Nonnull JsonObject tableRow) {
        super(tableRow);
    }

    /**
     * @return default null
     */
    @Nullable
    public String sourceSchemaName() {
        return null;
    }

    /**
     * @return table name
     */
    @Nonnull
    abstract public String sourceTableName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy