public enum PolyIntent extends Enum<PolyIntent>
Enumerates the intents of the polygon or polyline annotation.
| Enum Constant and Description |
|---|
PolygonCloud
Means that the annotation is intended to function as a cloud object.
|
PolygonDimension
Indicates that the polygon annotation is intended to function as a dimension.
|
PolyLineDimension
Indicates that the polyline annotation is intended to function as a dimension.
|
Undefined
Undefined state.
|
| Modifier and Type | Method and Description |
|---|---|
static PolyIntent |
getByValue(int value) |
int |
getValue() |
static PolyIntent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolyIntent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolyIntent Undefined
Undefined state.
public static final PolyIntent PolygonCloud
Means that the annotation is intended to function as a cloud object.
public static final PolyIntent PolyLineDimension
Indicates that the polyline annotation is intended to function as a dimension.
public static final PolyIntent PolygonDimension
Indicates that the polygon annotation is intended to function as a dimension.
public static PolyIntent[] values()
for (PolyIntent c : PolyIntent.values()) System.out.println(c);
public static PolyIntent 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()
public static PolyIntent getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.