public static enum StyledTextArea.CaretVisibility extends Enum<StyledTextArea.CaretVisibility>
| Enum Constant and Description |
|---|
AUTO
Caret is displayed when area is focused, enabled, and editable.
|
OFF
Caret is not displayed.
|
ON
Caret is displayed.
|
| Modifier and Type | Method and Description |
|---|---|
static StyledTextArea.CaretVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StyledTextArea.CaretVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StyledTextArea.CaretVisibility ON
public static final StyledTextArea.CaretVisibility AUTO
public static final StyledTextArea.CaretVisibility OFF
public static StyledTextArea.CaretVisibility[] values()
for (StyledTextArea.CaretVisibility c : StyledTextArea.CaretVisibility.values()) System.out.println(c);
public static StyledTextArea.CaretVisibility 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 null