public enum CursorHint extends java.lang.Enum<CursorHint>
Enum Constant and Description |
---|
AllowLink
Indicates the cursor specified by the AllowLinkCursor property.
|
CounterDiagonalResize
Indicates the cursor specified by the CounterDiagonalResizeCursor property.
|
DiagonalResize
Indicates the cursor specified by the DiagonalResizeCursor property.
|
Disallow
Indicates the cursor specified by the DisallowCursor property.
|
DisallowLink
Indicates the cursor specified by the DisallowLinkCursor property.
|
DontChange
Indicates the cursor specified by the Cursor property.
|
DrawLink
Indicates the cursor specified by the DrawLinkCursor property.
|
HorizontalResize
Indicates the cursor specified by the HorizontalResizeCursor property.
|
Move
Indicates the cursor specified by the MoveCursor property.
|
Pointer
Indicates the cursor specified by the PointerCursor property.
|
Rotate
Indicates the cursor specified by the RotateCursor property.
|
VerticalResize
Indicates the cursor specified by the VerticalResizeCursor property.
|
Modifier and Type | Method and Description |
---|---|
static CursorHint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CursorHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CursorHint Move
public static final CursorHint Rotate
public static final CursorHint HorizontalResize
public static final CursorHint VerticalResize
public static final CursorHint DiagonalResize
public static final CursorHint CounterDiagonalResize
public static final CursorHint DrawLink
public static final CursorHint Pointer
public static final CursorHint AllowLink
public static final CursorHint DisallowLink
public static final CursorHint Disallow
public static final CursorHint DontChange
public static CursorHint[] values()
for (CursorHint c : CursorHint.values()) System.out.println(c);
public static CursorHint 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