All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.nosqlbench.virtdata.processors.DocCtorData Maven / Gradle / Ivy

Go to download

Statistical sampling library for use in virtdata libraries, based on apache commons math 4

There is a newer version: 5.17.0
Show newest version
package io.nosqlbench.virtdata.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 - 2024 Weber Informatics LLC | Privacy Policy