com.emc.mongoose.base.config.el.CompositeExpressionInputBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoose-base Show documentation
Show all versions of mongoose-base Show documentation
Mongoose is a high-load storage performance testing tool
package com.emc.mongoose.base.config.el;
import com.github.akurilov.commons.io.collection.CompositeStringInput;
import java.lang.reflect.Method;
public interface CompositeExpressionInputBuilder {
T expression(final String expr);
T function(final String prefix, final String name, final Method method);
T value(final String name, final Object value, final Class> type);
CompositeStringInput build();
static CompositeExpressionInputBuilder newInstance() {
return new CompositeExpressionInputBuilderImpl();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy