public enum XpsSweepDirection extends Enum<XpsSweepDirection>
Valid values of ArcSegment element's SweepDirection property.
| Enum Constant and Description |
|---|
Clockwise
Clockwise direction.
|
Counterclockwise
Counterclockwise direction.
|
| Modifier and Type | Method and Description |
|---|---|
static XpsSweepDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XpsSweepDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XpsSweepDirection Counterclockwise
Counterclockwise direction.
public static final XpsSweepDirection Clockwise
Clockwise direction.
public static XpsSweepDirection[] values()
for (XpsSweepDirection c : XpsSweepDirection.values()) System.out.println(c);
public static XpsSweepDirection 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 © 2025 Aspose. All Rights Reserved.