Package net.sourceforge.plantuml.core
Enum DiagramType
- java.lang.Object
-
- java.lang.Enum<DiagramType>
-
- net.sourceforge.plantuml.core.DiagramType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DiagramType>
public enum DiagramType extends java.lang.Enum<DiagramType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DiagramType
getTypeFromArobaseStart(java.lang.String s)
static DiagramType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DiagramType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UML
public static final DiagramType UML
-
BPM
public static final DiagramType BPM
-
DITAA
public static final DiagramType DITAA
-
DOT
public static final DiagramType DOT
-
PROJECT
public static final DiagramType PROJECT
-
JCCKIT
public static final DiagramType JCCKIT
-
SALT
public static final DiagramType SALT
-
FLOW
public static final DiagramType FLOW
-
CREOLE
public static final DiagramType CREOLE
-
JUNGLE
public static final DiagramType JUNGLE
-
CUTE
public static final DiagramType CUTE
-
MATH
public static final DiagramType MATH
-
LATEX
public static final DiagramType LATEX
-
DEFINITION
public static final DiagramType DEFINITION
-
GANTT
public static final DiagramType GANTT
-
NW
public static final DiagramType NW
-
MINDMAP
public static final DiagramType MINDMAP
-
WBS
public static final DiagramType WBS
-
WIRE
public static final DiagramType WIRE
-
JSON
public static final DiagramType JSON
-
GIT
public static final DiagramType GIT
-
BOARD
public static final DiagramType BOARD
-
YAML
public static final DiagramType YAML
-
UNKNOWN
public static final DiagramType UNKNOWN
-
-
Method Detail
-
values
public static DiagramType[] 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 (DiagramType c : DiagramType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiagramType 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
-
getTypeFromArobaseStart
public static DiagramType getTypeFromArobaseStart(java.lang.String s)
-
-