Package net.sourceforge.plantuml
Enum UmlDiagramType
- java.lang.Object
-
- java.lang.Enum<UmlDiagramType>
-
- net.sourceforge.plantuml.UmlDiagramType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UmlDiagramType>
public enum UmlDiagramType extends java.lang.Enum<UmlDiagramType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SName
getStyleName()
static UmlDiagramType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UmlDiagramType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEQUENCE
public static final UmlDiagramType SEQUENCE
-
STATE
public static final UmlDiagramType STATE
-
CLASS
public static final UmlDiagramType CLASS
-
OBJECT
public static final UmlDiagramType OBJECT
-
ACTIVITY
public static final UmlDiagramType ACTIVITY
-
DESCRIPTION
public static final UmlDiagramType DESCRIPTION
-
COMPOSITE
public static final UmlDiagramType COMPOSITE
-
FLOW
public static final UmlDiagramType FLOW
-
TIMING
public static final UmlDiagramType TIMING
-
BPM
public static final UmlDiagramType BPM
-
NWDIAG
public static final UmlDiagramType NWDIAG
-
MINDMAP
public static final UmlDiagramType MINDMAP
-
WBS
public static final UmlDiagramType WBS
-
WIRE
public static final UmlDiagramType WIRE
-
HELP
public static final UmlDiagramType HELP
-
GANTT
public static final UmlDiagramType GANTT
-
SALT
public static final UmlDiagramType SALT
-
JSON
public static final UmlDiagramType JSON
-
GIT
public static final UmlDiagramType GIT
-
BOARD
public static final UmlDiagramType BOARD
-
YAML
public static final UmlDiagramType YAML
-
-
Method Detail
-
values
public static UmlDiagramType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UmlDiagramType c : UmlDiagramType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UmlDiagramType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getStyleName
public SName getStyleName()
-
-