net.sourceforge.plantuml.skin.ComponentStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.skin;
import net.sourceforge.plantuml.decoration.symbol.USymbol;
import net.sourceforge.plantuml.decoration.symbol.USymbols;
public enum ComponentStyle {
UML1, UML2, RECTANGLE;
public USymbol toUSymbol() {
switch (this) {
case UML1:
return USymbols.COMPONENT1;
case UML2:
return USymbols.COMPONENT2;
case RECTANGLE:
return USymbols.COMPONENT_RECTANGLE;
}
throw new AssertionError();
}
}