public enum DiagramXMLExport extends Enum<DiagramXMLExport>
Enum Constant and Description |
---|
EXPORT
Export of Diagram Information
|
EXPORT_ALONG_ALTERNATE_IMAGES
Export of Diagram Information and Diagram image
|
NO_EXPORT
Deprecated.
No Export of Diagram Information
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static DiagramXMLExport |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiagramXMLExport[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiagramXMLExport NO_EXPORT
public static final DiagramXMLExport EXPORT
public static final DiagramXMLExport EXPORT_ALONG_ALTERNATE_IMAGES
public static DiagramXMLExport[] values()
for (DiagramXMLExport c : DiagramXMLExport.values()) System.out.println(c);
public static DiagramXMLExport valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()