com.mindfusion.diagramming
Enum CursorHint

java.lang.Object
  extended by java.lang.Enum<CursorHint>
      extended by com.mindfusion.diagramming.CursorHint
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CursorHint>

public enum CursorHint
extends java.lang.Enum<CursorHint>


Enum Constant Summary
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.
 
Method Summary
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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Move

public static final CursorHint Move
Indicates the cursor specified by the MoveCursor property.


Rotate

public static final CursorHint Rotate
Indicates the cursor specified by the RotateCursor property.


HorizontalResize

public static final CursorHint HorizontalResize
Indicates the cursor specified by the HorizontalResizeCursor property.


VerticalResize

public static final CursorHint VerticalResize
Indicates the cursor specified by the VerticalResizeCursor property.


DiagonalResize

public static final CursorHint DiagonalResize
Indicates the cursor specified by the DiagonalResizeCursor property.


CounterDiagonalResize

public static final CursorHint CounterDiagonalResize
Indicates the cursor specified by the CounterDiagonalResizeCursor property.


DrawLink

public static final CursorHint DrawLink
Indicates the cursor specified by the DrawLinkCursor property.


Pointer

public static final CursorHint Pointer
Indicates the cursor specified by the PointerCursor property.


AllowLink

public static final CursorHint AllowLink
Indicates the cursor specified by the AllowLinkCursor property.


DisallowLink

public static final CursorHint DisallowLink
Indicates the cursor specified by the DisallowLinkCursor property.


Disallow

public static final CursorHint Disallow
Indicates the cursor specified by the DisallowCursor property.


DontChange

public static final CursorHint DontChange
Indicates the cursor specified by the Cursor property.

Method Detail

values

public static final CursorHint[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(CursorHint c : CursorHint.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static CursorHint valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name