All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.plantuml.skin.ComponentStyle Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// 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();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy