public static enum ExtendedCodeAreaCaret.CursorRenderingMode extends java.lang.Enum<ExtendedCodeAreaCaret.CursorRenderingMode>
| Enum Constant and Description |
|---|
NEGATIVE
Underlying character is painted using negative color to cursor
cursor.
|
PAINT
Cursor is just painted.
|
XOR
Cursor is painted using pixels inversion.
|
| Modifier and Type | Method and Description |
|---|---|
static ExtendedCodeAreaCaret.CursorRenderingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtendedCodeAreaCaret.CursorRenderingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtendedCodeAreaCaret.CursorRenderingMode PAINT
public static final ExtendedCodeAreaCaret.CursorRenderingMode XOR
public static final ExtendedCodeAreaCaret.CursorRenderingMode NEGATIVE
public static ExtendedCodeAreaCaret.CursorRenderingMode[] values()
for (ExtendedCodeAreaCaret.CursorRenderingMode c : ExtendedCodeAreaCaret.CursorRenderingMode.values()) System.out.println(c);
public static ExtendedCodeAreaCaret.CursorRenderingMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null