io.github.sinri.keel.mysql.matrix.AbstractTableRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
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