schemacrawler.schema.CrawlInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of schemacrawler Show documentation
Show all versions of schemacrawler Show documentation
SchemaCrawler is an open-source Java API that makes working with database metadata as easy as working with plain old Java objects. SchemaCrawler is also a database schema discovery and comprehension, and schema documentation tool. You can search for database schema objects using regular expressions, and output the schema and data in a readable text format. The output is designed to be diff-ed against other database schemas.
package schemacrawler.schema;
import java.io.Serializable;
import java.time.LocalDateTime;
public interface CrawlInfo
extends Serializable
{
/**
* Gets the timestamp of when the database was crawled.
*
* @return Timestamp
*/
LocalDateTime getCrawlTimestamp();
/**
* Gets the name of the RDBMS vendor and product.
*
* @return Name of the RDBMS vendor and product
*/
String getDatabaseInfo();
/**
* Gets the name of the JDBC driver.
*
* @return Driver name
*/
String getJdbcDriverInfo();
/**
* Gets the SchemaCrawler version.
*
* @return SchemaCrawler version
*/
String getSchemaCrawlerInfo();
/**
* Gets the title.
*
* @return Title
*/
String getTitle();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy