io.nosqlbench.virtdata.api.config.ConfigModel Maven / Gradle / Ivy
package io.nosqlbench.virtdata.api.config;
import java.util.List;
public interface ConfigModel {
List getElements();
public static class Element {
public final String name;
public final Class> type;
public Element(String name, Class> type) {
this.name = name;
this.type =type;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy