Class JavaClass.JavaClassBuilder

java.lang.Object
com.github.tadukoo.parsing.code.java.JavaClass.JavaClassBuilder
Enclosing class:
JavaClass

public static class JavaClass.JavaClassBuilder extends Object
Java Class Builder is used to create a JavaClass. It has the following parameters:
Java Class Parameters
Parameter Description Default or Required
packageName The name of the package the class is in Required
imports The classes imported by the class An empty list
staticImports The classes imported statically by the class An empty list
annotations The annotations on the class An empty list
visibility The Visibility of the class Visibility.PUBLIC
className The name of the class Required
superClassName The name of the class this one extends (may be null) null
fields The fields on the class An empty list
methods The methods in the class An empty list
Since:
Alpha v.0.2
Version:
Alpha v.0.3
Author:
Logan Ferree (Tadukoo)