org.etlunit.feature.RuntimeOptionDescriptor Maven / Gradle / Ivy
package org.etlunit.feature;
public interface RuntimeOptionDescriptor
{
String getName();
String getDescription();
enum option_type
{
bool,
integer,
string
}
option_type getOptionType();
String getDefaultStringValue();
boolean getDefaultBooleanValue();
int getDefaultIntegerValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy