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

kz.greetgo.file_storage.impl.TablePosition Maven / Gradle / Ivy

package kz.greetgo.file_storage.impl;

public class TablePosition {
  public final int dbIndex, tableIndex;

  public TablePosition(int dbIndex, int tableIndex) {
    this.dbIndex = dbIndex;
    this.tableIndex = tableIndex;
  }

  @Override
  public String toString() {
    return "TablePosition{" +
      "dbIndex=" + dbIndex +
      ", tableIndex=" + tableIndex +
      '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy