Skip navigation links
A C D G P R U V 

A

addField(UMLField) - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
Adds the field.
addMethod(UMLMethod) - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
Adds the method.

C

ClassifierType - Enum in de.elnarion.util.plantuml.generator.classdiagram
The Enum ClassifierType defines the different classifiers of a class, field or method in the diagram.
ClassType - Enum in de.elnarion.util.plantuml.generator.classdiagram
The Enum ClassType defines supported class types during the uml class diagram generation.
compare(UMLMethod, UMLMethod) - Method in class de.elnarion.util.plantuml.generator.util.UMLMethodComparator
 

D

de.elnarion.util.plantuml.generator - package de.elnarion.util.plantuml.generator
 
de.elnarion.util.plantuml.generator.classdiagram - package de.elnarion.util.plantuml.generator.classdiagram
 
de.elnarion.util.plantuml.generator.util - package de.elnarion.util.plantuml.generator.util
 

G

generateDiagramText() - Method in class de.elnarion.util.plantuml.generator.PlantUMLClassDiagramGenerator
Generate the class diagram string for all classes in the configured packages.
getClassifierType() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLField
Gets the classifier type.
getClassifierType() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLMethod
Gets the classifier type.
getClassType() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
Gets the class type.
getDiagramText() - Method in interface de.elnarion.util.plantuml.generator.classdiagram.PlantUMLDiagramElement
Gets the diagram text.
getDiagramText() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
 
getDiagramText() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLField
 
getDiagramText() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLMethod
 
getDiagramText() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLRelationship
 
getFields() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
Gets the fields.
getFromMultiplicity() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLRelationship
Gets the from multiplicity.
getFromName() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLRelationship
Gets the from name.
getMethods() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
Gets the methods.
getName() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
Gets the name.
getName() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLField
Gets the name.
getName() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLMethod
Gets the name.
getName() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLRelationship
Gets the name.
getParametersAndTypes() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLMethod
Gets the parameters and types.
getRelationshiptype() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLRelationship
Gets the relationshiptype.
getResultType() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLMethod
Gets the result type.
getStereotypes() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
Gets the stereotypes.
getToMultiplicity() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLRelationship
Gets the to multiplicity.
getToName() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLRelationship
Gets the to name.
getType() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLField
Gets the type.
getVisibilityText(VisibilityType) - Static method in class de.elnarion.util.plantuml.generator.PlantUMLUtil
Gets the visibility text for a VisibilityType.
getVisibilityType() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
Gets the visibility type.
getVisibilityType() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLField
Gets the visibility type.
getVisibilityType() - Method in class de.elnarion.util.plantuml.generator.classdiagram.UMLMethod
Gets the visibility type.

P

PlantUMLClassDiagramGenerator - Class in de.elnarion.util.plantuml.generator
This class provides the ability to generate a PlantUML class diagram out of a list of package names.
PlantUMLClassDiagramGenerator(ClassLoader, List<String>, List<String>, boolean, boolean) - Constructor for class de.elnarion.util.plantuml.generator.PlantUMLClassDiagramGenerator
Instantiates a new Plant UML diagram generator.
PlantUMLDiagramElement - Interface in de.elnarion.util.plantuml.generator.classdiagram
The Interface PlantUMLDiagramElement defines all methods common to all PlantUMLDiagramElements.
PlantUMLUtil - Class in de.elnarion.util.plantuml.generator
The Class PlantUMLUtil provides helper methods for generating the class diagram.

R

RelationshipType - Enum in de.elnarion.util.plantuml.generator.classdiagram
The Enum RelationshipType defines all supported relationship types of this utility.

U

UMLClass - Class in de.elnarion.util.plantuml.generator.classdiagram
The Class UMLClass encapsulates all information needed for creating a diagram text for a uml class object.
UMLClass(VisibilityType, ClassType, List<UMLField>, List<UMLMethod>, String, List<String>) - Constructor for class de.elnarion.util.plantuml.generator.classdiagram.UMLClass
Instantiates a new UML class.
UMLField - Class in de.elnarion.util.plantuml.generator.classdiagram
The Class UMLField encapsulates all information needed for creating a diagram text for a uml field object.
UMLField(ClassifierType, VisibilityType, String, String) - Constructor for class de.elnarion.util.plantuml.generator.classdiagram.UMLField
Instantiates a new uml field.
UMLMethod - Class in de.elnarion.util.plantuml.generator.classdiagram
The Class UMLMethod encapsulates all information needed for creating a diagram text for a uml method object.
UMLMethod(ClassifierType, VisibilityType, String, String, Map<String, String>, List<String>) - Constructor for class de.elnarion.util.plantuml.generator.classdiagram.UMLMethod
Instantiates a new method.
UMLMethodComparator - Class in de.elnarion.util.plantuml.generator.util
The Class UMLMethodComparator is used to sort UMLMethod objects.
UMLMethodComparator() - Constructor for class de.elnarion.util.plantuml.generator.util.UMLMethodComparator
 
UMLRelationship - Class in de.elnarion.util.plantuml.generator.classdiagram
The Class UMLRelationship encapsulates all information needed for creating a diagram text for a uml relationship object..
UMLRelationship(String, String, String, String, String, RelationshipType) - Constructor for class de.elnarion.util.plantuml.generator.classdiagram.UMLRelationship
Instantiates a new UML relationship.

V

valueOf(String) - Static method in enum de.elnarion.util.plantuml.generator.classdiagram.ClassifierType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.elnarion.util.plantuml.generator.classdiagram.ClassType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.elnarion.util.plantuml.generator.classdiagram.RelationshipType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum de.elnarion.util.plantuml.generator.classdiagram.VisibilityType
Returns the enum constant of this type with the specified name.
values() - Static method in enum de.elnarion.util.plantuml.generator.classdiagram.ClassifierType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.elnarion.util.plantuml.generator.classdiagram.ClassType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.elnarion.util.plantuml.generator.classdiagram.RelationshipType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum de.elnarion.util.plantuml.generator.classdiagram.VisibilityType
Returns an array containing the constants of this enum type, in the order they are declared.
VisibilityType - Enum in de.elnarion.util.plantuml.generator.classdiagram
The Enum VisibilityType defines all supported visibility types of this utility.
A C D G P R U V 
Skip navigation links

Copyright © 2019. All rights reserved.