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