Uses of Enum Class
com.github.tadukoo.parsing.code.java.Visibility
-
Uses of Visibility in com.github.tadukoo.parsing.code.java
Fields in com.github.tadukoo.parsing.code.java declared as VisibilityModifier and TypeFieldDescriptionprivate VisibilityJavaClass.JavaClassBuilder.visibilityTheVisibilityof the classprivate final VisibilityJavaClass.visibilityTheVisibilityof the classprivate VisibilityJavaField.JavaFieldBuilder.visibilityTheVisibilityof the fieldprivate final VisibilityJavaField.visibilityTheVisibilityof the fieldprivate VisibilityJavaMethod.JavaMethodBuilder.visibilityTheVisibilityof the methodprivate final VisibilityJavaMethod.visibilityTheVisibilityof the methodMethods in com.github.tadukoo.parsing.code.java that return VisibilityModifier and TypeMethodDescriptionstatic VisibilityGrabs theVisibilitythat corresponds to the given textJavaClass.getVisibility()JavaField.getVisibility()JavaMethod.getVisibility()static VisibilityReturns the enum constant of this class with the specified name.static Visibility[]Visibility.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.github.tadukoo.parsing.code.java with parameters of type VisibilityModifier and TypeMethodDescriptionJavaClass.JavaClassBuilder.visibility(Visibility visibility) JavaField.JavaFieldBuilder.visibility(Visibility visibility) JavaMethod.JavaMethodBuilder.visibility(Visibility visibility) Constructors in com.github.tadukoo.parsing.code.java with parameters of type VisibilityModifierConstructorDescriptionprivateJavaClass(String packageName, List<String> imports, List<String> staticImports, List<JavaAnnotation> annotations, Visibility visibility, String className, String superClassName, List<JavaField> fields, List<JavaMethod> methods) Constructs a new Java Class with the given parametersprivateJavaField(List<JavaAnnotation> annotations, Visibility visibility, boolean isFinal, String type, String name, String value) Constructs a Java Field with the given parametersprivateJavaMethod(List<JavaAnnotation> annotations, Visibility visibility, String returnType, String name, List<com.github.tadukoo.util.tuple.Pair<String, String>> parameters, List<String> throwTypes, List<String> lines) Constructs a new Java Method with the given parameters