public enum DiagramType extends java.lang.Enum<DiagramType>
Enum Constant and Description |
---|
DITAA |
DOT |
FLOW |
JCCKIT |
PROJECT |
SALT |
TURING |
UML |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final DiagramType UML
public static final DiagramType DITAA
public static final DiagramType DOT
public static final DiagramType PROJECT
public static final DiagramType JCCKIT
public static final DiagramType SALT
public static final DiagramType TURING
public static final DiagramType FLOW
public static final DiagramType UNKNOWN
public static DiagramType[] values()
for (DiagramType c : DiagramType.values()) System.out.println(c);
public static DiagramType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null