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

com.avaje.ebean.config.TableName Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.config;

/**
 * TableName holds catalog, schema and table name.
 * 
 * @author emcgreal
 */
public final class TableName {

  /** The catalog. */
  private String catalog;

  /** The schema. */
  private String schema;

  /** The name. */
  private String name;

  /**
   * Construct with the given catalog schema and table name.
   * 

* Note the catalog and schema can be null. *

*/ public TableName(String catalog, String schema, String name) { super(); this.catalog = catalog != null ? catalog.trim() : null; this.schema = schema != null ? schema.trim() : null; this.name = name != null ? name.trim() : null; } /** * Construct splitting the qualifiedTableName potentially into catalog, schema * and name. *

* The qualifiedTableName can take the form of catalog.schema.tableName and is * split on the '.' period character. The catalog and schema are optional. *

* * @param qualifiedTableName * the fully qualified table name using '.' between schema and table * name etc (with catalog and schema optional). */ public TableName(String qualifiedTableName) { String[] split = qualifiedTableName.split("\\."); int len = split.length; if (split.length > 3) { String m = "Error splitting " + qualifiedTableName + ". Expecting at most 2 '.' characters"; throw new RuntimeException(m); } if (len == 3) { this.catalog = split[0]; } if (len >= 2) { this.schema = split[len - 2]; } this.name = split[len - 1]; } /** * Parse a qualifiedTableName that might include a catalog and schema and just return the table name. */ public static String parse(String qualifiedTableName) { return new TableName(qualifiedTableName).getName(); } public String toString() { return getQualifiedName(); } /** * Gets the catalog. * * @return the catalog */ public String getCatalog() { return catalog; } /** * Gets the schema. * * @return the schema */ public String getSchema() { return schema; } /** * Gets the name. * * @return the name */ public String getName() { return name; } /** * Returns the qualified name in the form catalog.schema.name. *

* Catalog and schema are optional. *

* * @return the qualified name */ public String getQualifiedName() { StringBuilder buffer = new StringBuilder(); // Add catalog if (catalog != null) { buffer.append(catalog); } // Add schema if (schema != null) { if (buffer.length() > 0) { buffer.append("."); } buffer.append(schema); } if (buffer.length() > 0) { buffer.append("."); } buffer.append(name); return buffer.toString(); } /** * Append a catalog and schema prefix if they exist to the string builder. */ public void appendCatalogAndSchema(StringBuilder buffer) { if (catalog != null) { buffer.append(catalog).append("."); } if (schema != null) { buffer.append(schema).append("."); } } /** * Checks if is table name is valid i.e. it has at least a name. * * @return true, if is valid */ public boolean isValid() { return name != null && !name.isEmpty(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy