Package io.virtdata.processors
Class ExampleDocData
- java.lang.Object
-
- io.virtdata.processors.ExampleDocData
-
- All Implemented Interfaces:
DocFuncData
public class ExampleDocData extends java.lang.Object implements DocFuncData
-
-
Constructor Summary
Constructors Constructor Description ExampleDocData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Category[]getCategories()java.lang.StringgetClassJavadoc()Javadoc for the class, or null if there is none.java.lang.StringgetClassName()java.util.List<DocCtorData>getCtors()The list of constructors for this documented type.java.util.List<DocForFuncCtor>getCtorsAlternate()java.lang.StringgetInType()The input type for the apply method in the documented function class.java.lang.StringgetOutType()The output type for the apply method in the documented function class.java.lang.StringgetPackageName()
-
-
-
Method Detail
-
getPackageName
public java.lang.String getPackageName()
- Specified by:
getPackageNamein interfaceDocFuncData- Returns:
- the package name for the documented type
-
getCategories
public Category[] getCategories()
- Specified by:
getCategoriesin interfaceDocFuncData- Returns:
- Return the categories for this function.
-
getClassName
public java.lang.String getClassName()
- Specified by:
getClassNamein interfaceDocFuncData- Returns:
- the the
Class.getSimpleName()of the class element
-
getClassJavadoc
public java.lang.String getClassJavadoc()
Description copied from interface:DocFuncDataJavadoc for the class, or null if there is none.- Specified by:
getClassJavadocin interfaceDocFuncData- Returns:
- a String of class javadoc data, or null if none
-
getInType
public java.lang.String getInType()
Description copied from interface:DocFuncDataThe input type for the apply method in the documented function class. Documented function classes must always implement a Java 8 functional interface.- Specified by:
getInTypein interfaceDocFuncData- Returns:
- the input type name
-
getOutType
public java.lang.String getOutType()
Description copied from interface:DocFuncDataThe output type for the apply method in the documented function class. Documented function classes must always implement a Java 8 functional interface.- Specified by:
getOutTypein interfaceDocFuncData- Returns:
- the output type name
-
getCtors
public java.util.List<DocCtorData> getCtors()
Description copied from interface:DocFuncDataThe list of constructors for this documented type.- Specified by:
getCtorsin interfaceDocFuncData- Returns:
- a list of constructor models
-
getCtorsAlternate
public java.util.List<DocForFuncCtor> getCtorsAlternate()
-
-