public enum UmlDiagramType extends java.lang.Enum<UmlDiagramType>
Enum Constant and Description |
---|
ACTIVITY |
CLASS |
COMPOSITE |
DESCRIPTION |
FLOW |
OBJECT |
SEQUENCE |
STATE |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final UmlDiagramType SEQUENCE
public static final UmlDiagramType STATE
public static final UmlDiagramType CLASS
public static final UmlDiagramType OBJECT
public static final UmlDiagramType ACTIVITY
public static final UmlDiagramType DESCRIPTION
public static final UmlDiagramType COMPOSITE
public static final UmlDiagramType FLOW
public static UmlDiagramType[] values()
for (UmlDiagramType c : UmlDiagramType.values()) System.out.println(c);
public static UmlDiagramType 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