ai.databand.deequ.DbndResultKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbnd-api-deequ Show documentation
Show all versions of dbnd-api-deequ Show documentation
DBND Deequ integration library.
The newest version!
/*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.deequ;
import com.amazon.deequ.repository.ResultKey;
import scala.collection.immutable.Map;
public class DbndResultKey extends ResultKey {
private final String dataSetName;
public DbndResultKey(long dataSetDate, Map tags, String dataSetName) {
super(dataSetDate, tags);
this.dataSetName = dataSetName;
}
public DbndResultKey(String dataSetName) {
super(System.currentTimeMillis(), scala.collection.immutable.Map$.MODULE$.empty());
this.dataSetName = dataSetName;
}
public DbndResultKey(long dataSetDate, Map tags) {
super(dataSetDate, tags);
this.dataSetName = "dataSet";
}
public String dataSetName() {
return dataSetName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy