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