1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-02 08:30:49 +00:00
plantuml/src/net/sourceforge/plantuml/UmlDiagramType.java

102 lines
2.5 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2010-11-15 20:35:36 +00:00
*
2017-03-15 19:13:31 +00:00
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
2010-11-15 20:35:36 +00:00
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2010-11-15 20:35:36 +00:00
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml;
import net.sourceforge.plantuml.style.SName;
2010-11-15 20:35:36 +00:00
public enum UmlDiagramType {
SEQUENCE, STATE, CLASS, OBJECT, ACTIVITY, DESCRIPTION, COMPOSITE, FLOW, TIMING, BPM, NWDIAG, MINDMAP, WBS, WIRE,
2022-12-13 17:30:41 +00:00
HELP, GANTT, SALT, JSON, GIT, BOARD, YAML, HCL, EBNF, REGEX;
public SName getStyleName() {
2022-10-05 20:32:57 +00:00
if (this == SEQUENCE)
return SName.sequenceDiagram;
2022-10-05 20:32:57 +00:00
if (this == STATE)
return SName.stateDiagram;
2022-10-05 20:32:57 +00:00
if (this == CLASS)
return SName.classDiagram;
2022-10-05 20:32:57 +00:00
if (this == OBJECT)
return SName.objectDiagram;
2022-10-05 20:32:57 +00:00
if (this == ACTIVITY)
return SName.activityDiagram;
2022-10-05 20:32:57 +00:00
if (this == DESCRIPTION)
return SName.componentDiagram;
2022-10-05 20:32:57 +00:00
if (this == COMPOSITE)
return SName.componentDiagram;
2022-10-05 20:32:57 +00:00
if (this == MINDMAP)
return SName.mindmapDiagram;
2022-10-05 20:32:57 +00:00
if (this == WBS)
return SName.wbsDiagram;
2022-10-05 20:32:57 +00:00
if (this == GANTT)
2020-08-25 17:24:17 +00:00
return SName.ganttDiagram;
2022-10-05 20:32:57 +00:00
if (this == SALT)
2020-09-30 20:57:58 +00:00
return SName.saltDiagram;
2022-10-05 20:32:57 +00:00
if (this == YAML)
2021-03-22 18:00:32 +00:00
return SName.yamlDiagram;
2022-10-05 20:32:57 +00:00
if (this == HCL)
2022-01-28 21:45:34 +00:00
return SName.yamlDiagram;
2022-10-05 20:32:57 +00:00
if (this == JSON)
2021-03-22 18:00:32 +00:00
return SName.jsonDiagram;
2022-10-05 20:32:57 +00:00
if (this == TIMING)
2021-08-30 17:13:54 +00:00
return SName.timingDiagram;
2022-10-05 20:32:57 +00:00
if (this == NWDIAG)
return SName.nwdiagDiagram;
2022-10-05 20:32:57 +00:00
if (this == EBNF)
return SName.ebnf;
2022-12-13 17:30:41 +00:00
if (this == REGEX)
return SName.regex;
return SName.activityDiagram;
}
2010-11-15 20:35:36 +00:00
}