plantuml/src/net/sourceforge/plantuml/style/SName.java

162 lines
3.0 KiB
Java
Raw Normal View History

2019-07-14 20:09:26 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2019-07-14 20:09:26 +00:00
*
* Project Info: http://plantuml.com
*
2019-07-14 20:09:26 +00:00
* If you like this project or if you find it useful, you can support us at:
*
2019-07-14 20:09:26 +00:00
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
2019-07-14 20:09:26 +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
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* 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.style;
public enum SName {
activity, //
activityBar, //
activityDiagram, //
actor, //
agent, //
2022-06-29 16:45:19 +00:00
analog, //
archimate, //
arrow, //
artifact, //
2022-03-29 21:13:46 +00:00
binary, //
boundary, //
box, //
2021-03-07 12:23:24 +00:00
boxless, //
caption, //
card, //
circle, //
classDiagram, //
class_, //
clickable, //
cloud, //
2021-04-25 20:59:17 +00:00
closed, //
collection, //
collections, //
component, //
2022-09-15 17:24:26 +00:00
composite, //
2022-02-10 18:16:18 +00:00
robust, //
concise, //
clock, //
componentDiagram, //
2021-08-30 17:13:54 +00:00
constraintArrow, //
control, //
database, //
delay, //
destroy, //
diamond, //
document, //
2022-10-05 20:32:57 +00:00
ebnf, //
element, //
entity, //
2022-02-01 20:21:45 +00:00
end, //
2022-02-10 18:16:18 +00:00
start, //
2022-02-01 20:21:45 +00:00
stop, //
file, //
folder, //
footer, //
frame, //
2020-08-25 17:24:17 +00:00
ganttDiagram, //
group, //
groupHeader, //
2021-09-19 17:05:24 +00:00
header, //
2021-04-04 10:31:53 +00:00
hexagon, //
2021-03-07 12:23:24 +00:00
highlight, //
interface_, //
2020-11-21 17:33:24 +00:00
jsonDiagram, //
2020-12-06 21:43:09 +00:00
gitDiagram, //
2021-02-02 10:12:15 +00:00
label, //
leafNode, //
legend, //
lifeLine, //
2022-10-05 20:32:57 +00:00
mainframe, //
2021-10-20 16:33:09 +00:00
map, //
2020-08-25 17:24:17 +00:00
milestone, //
mindmapDiagram, //
2021-09-15 21:03:09 +00:00
network, //
node, //
note, //
nwdiagDiagram, //
objectDiagram, //
2021-09-19 17:05:24 +00:00
object, //
package_, //
participant, //
partition, //
2021-04-04 10:31:53 +00:00
person, //
2022-08-17 17:34:24 +00:00
port, //
queue, //
rectangle, //
reference, //
referenceHeader, //
2022-05-21 09:41:00 +00:00
requirement, //
root, //
rootNode, //
2020-09-30 20:57:58 +00:00
saltDiagram, //
separator, //
sequenceDiagram, //
2021-09-15 21:03:09 +00:00
server, //
stack, //
stateDiagram, //
2021-09-19 17:05:24 +00:00
state, //
2022-08-19 16:34:21 +00:00
stateBody, //
stereotype, //
storage, //
swimlane, //
2020-08-25 17:24:17 +00:00
task, //
2021-04-07 18:02:23 +00:00
timeline, //
2021-08-30 17:13:54 +00:00
timingDiagram, //
title, //
2022-01-14 17:06:05 +00:00
undone, //
unstarted, //
usecase, //
2022-02-01 20:21:45 +00:00
visibilityIcon, //
private_, //
protected_, //
public_, //
IEMandatory, //
spot, //
spotAnnotation, //
spotInterface, //
spotEnum, //
spotProtocol, //
spotStruct, //
2022-02-01 20:21:45 +00:00
spotEntity, //
spotException, //
2022-02-01 20:21:45 +00:00
spotClass, //
spotAbstractClass, //
wbsDiagram, //
yamlDiagram; //
2019-08-26 17:07:21 +00:00
public static String depth(int level) {
return "depth(" + level + ")";
}
}