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

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

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

public enum DataEncodingTable {

  ID("id"),
  MODE("mode"),
  COMPRESSION("compression"),
  BYTE_ORDER("byte_order"),
  MZ_PRECISION("mz_precision"),
  INTENSITY_PRECISION("intensity_precision"),
  PARAM_TREE("param_tree");
  
  public static String tableName = "data_encoding";
  private final String columnName;
  
  private DataEncodingTable(String colName) {
    this.columnName = colName;
  }
  
  public String getValue() {
    return columnName;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy