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

fr.profi.mzdb.db.table.TableParamTreeSchemaTable Maven / Gradle / Ivy

There is a newer version: 0.0.27
Show newest version
package fr.profi.mzdb.db.table;

public enum TableParamTreeSchemaTable {

  TABLE_NAME("table_name"),
  SCHEMA_NAME("schema_name");
  
  public static String tableName = "table_param_tree_schema";
  private final String columnName;
  
  private TableParamTreeSchemaTable(String colName) {
    this.columnName = colName;
  }
  
  public String getValue() {
    return columnName;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy