public enum DxfOutputVersion extends Enum<DxfOutputVersion>
Specifies version of DXF file
| Enum Constant and Description |
|---|
R12
R11-R12 DXF version
|
| Modifier and Type | Method and Description |
|---|---|
static DxfOutputVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DxfOutputVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DxfOutputVersion R12
R11-R12 DXF version
public static DxfOutputVersion[] values()
for (DxfOutputVersion c : DxfOutputVersion.values()) System.out.println(c);
public static DxfOutputVersion 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.