public enum CaretSymbol extends Enum<CaretSymbol>
A symbol to be associated with the caret.
| Enum Constant and Description |
|---|
None
No symbol should be associated with the caret.
|
Paragraph
A new paragraph symbol should be associated with the caret.
|
| Modifier and Type | Method and Description |
|---|---|
static CaretSymbol |
getByValue(int value) |
int |
getValue() |
static CaretSymbol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaretSymbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaretSymbol None
No symbol should be associated with the caret.
public static final CaretSymbol Paragraph
A new paragraph symbol should be associated with the caret.
public static CaretSymbol[] values()
for (CaretSymbol c : CaretSymbol.values()) System.out.println(c);
public static CaretSymbol 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 CaretSymbol getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.