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

kz.greetgo.libase.strureader.PrimaryKeyRow Maven / Gradle / Ivy

package kz.greetgo.libase.strureader;

import java.util.ArrayList;
import java.util.List;

public class PrimaryKeyRow {
  public String tableName;
  public final List keyFieldNames = new ArrayList<>();
  
  public PrimaryKeyRow(String tableName) {
    this.tableName = tableName;
  }
  
  @Override
  public String toString() {
    return "PrimaryKey [tableName=" + tableName + ", keyFieldNames=" + keyFieldNames + "]";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy