io.nosqlbench.virtdata.api.processors.DocCtorData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
package io.nosqlbench.virtdata.api.processors;
import java.util.List;
import java.util.Map;
public interface DocCtorData {
/**
* @return the {@link Class#getSimpleName()} of the documented ctor.
*/
String getClassName();
/**
* @return javadoc for the documented ctor, or null if it isn't provided
*/
String getCtorJavaDoc();
/**
* @return an ordered map of the arguments of the documented constructor in name,type form.
*/
Map getArgs();
/**
* @return a list of examples, where each is list of (example syntax, comment..)
*/
List> getExamples();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy