public enum CadOutputMode extends Enum<CadOutputMode>
| Enum Constant and Description |
|---|
Convert
Convert image from CAD format to CAD format preserving all the objects as they are
|
Render
Render all the objects to lines and save in specified format
|
| Modifier and Type | Method and Description |
|---|---|
static CadOutputMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CadOutputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CadOutputMode Render
Render all the objects to lines and save in specified format
public static final CadOutputMode Convert
Convert image from CAD format to CAD format preserving all the objects as they are
public static CadOutputMode[] values()
for (CadOutputMode c : CadOutputMode.values()) System.out.println(c);
public static CadOutputMode 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 nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.