public enum CadPlotRotation extends Enum<CadPlotRotation>
Plot rotation.
CadPlotSettings
| Enum Constant and Description |
|---|
Clockwise90Degrees
The clockwise90 degrees
|
Counterclockwise90Degrees
The counterclockwise90 degrees
|
NoRotation
The no rotation
|
UpsideDown
The upside down
|
| Modifier and Type | Method and Description |
|---|---|
static CadPlotRotation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CadPlotRotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CadPlotRotation NoRotation
The no rotation
public static final CadPlotRotation Counterclockwise90Degrees
The counterclockwise90 degrees
public static final CadPlotRotation UpsideDown
The upside down
public static final CadPlotRotation Clockwise90Degrees
The clockwise90 degrees
public static CadPlotRotation[] values()
for (CadPlotRotation c : CadPlotRotation.values()) System.out.println(c);
public static CadPlotRotation 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.