Enum CursorType

java.lang.Object
java.lang.Enum<CursorType>
org.eclipse.birt.chart.model.attribute.CursorType
All Implemented Interfaces:
Serializable, Comparable<CursorType>, java.lang.constant.Constable, org.eclipse.emf.common.util.Enumerator

public enum CursorType extends Enum<CursorType> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Cursor Type', and utility methods for working with them. The cursor type defines standard cursor types which are supported by all devices, including SWT, Swing, SVG and HTML/Image.
See Also:
  • Enum Constant Details

  • Field Details

    • AUTO_VALUE

      public static final int AUTO_VALUE
      The 'Auto' literal value.

      If the meaning of 'Auto' literal object isn't clear, there really should be more of a description here...

      See Also:
    • CROSSHAIR_VALUE

      public static final int CROSSHAIR_VALUE
      The 'Crosshair' literal value.

      If the meaning of 'Crosshair' literal object isn't clear, there really should be more of a description here...

      See Also:
    • DEFAULT_VALUE

      public static final int DEFAULT_VALUE
      The 'Default' literal value.

      If the meaning of 'Default' literal object isn't clear, there really should be more of a description here...

      See Also:
    • POINTER_VALUE

      public static final int POINTER_VALUE
      The 'Pointer' literal value.

      If the meaning of 'Pointer' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MOVE_VALUE

      public static final int MOVE_VALUE
      The 'Move' literal value.

      If the meaning of 'Move' literal object isn't clear, there really should be more of a description here...

      See Also:
    • TEXT_VALUE

      public static final int TEXT_VALUE
      The 'Text' literal value.

      If the meaning of 'Text' literal object isn't clear, there really should be more of a description here...

      See Also:
    • WAIT_VALUE

      public static final int WAIT_VALUE
      The 'Wait' literal value.

      If the meaning of 'Wait' literal object isn't clear, there really should be more of a description here...

      See Also:
    • ERESIZE_VALUE

      public static final int ERESIZE_VALUE
      The 'EResize' literal value.

      If the meaning of 'EResize' literal object isn't clear, there really should be more of a description here...

      See Also:
    • NE_RESIZE_VALUE

      public static final int NE_RESIZE_VALUE
      The 'NE Resize' literal value.

      If the meaning of 'NE Resize' literal object isn't clear, there really should be more of a description here...

      See Also:
    • NW_RESIZE_VALUE

      public static final int NW_RESIZE_VALUE
      The 'NW Resize' literal value.

      If the meaning of 'NW Resize' literal object isn't clear, there really should be more of a description here...

      See Also:
    • NRESIZE_VALUE

      public static final int NRESIZE_VALUE
      The 'NResize' literal value.

      If the meaning of 'NResize' literal object isn't clear, there really should be more of a description here...

      See Also:
    • SE_RESIZE_VALUE

      public static final int SE_RESIZE_VALUE
      The 'SE Resize' literal value.

      If the meaning of 'SE Resize' literal object isn't clear, there really should be more of a description here...

      See Also:
    • SW_RESIZE_VALUE

      public static final int SW_RESIZE_VALUE
      The 'SW Resize' literal value.

      If the meaning of 'SW Resize' literal object isn't clear, there really should be more of a description here...

      See Also:
    • SRESIZE_VALUE

      public static final int SRESIZE_VALUE
      The 'SResize' literal value.

      If the meaning of 'SResize' literal object isn't clear, there really should be more of a description here...

      See Also:
    • WRESIZE_VALUE

      public static final int WRESIZE_VALUE
      The 'WResize' literal value.

      If the meaning of 'WResize' literal object isn't clear, there really should be more of a description here...

      See Also:
    • CUSTOM_VALUE

      public static final int CUSTOM_VALUE
      The 'Custom' literal value.

      If the meaning of 'Custom' literal object isn't clear, there really should be more of a description here...

      See Also:
    • VALUES

      public static final List<CursorType> VALUES
      A public read-only list of all the 'Cursor Type' enumerators.
  • Method Details

    • values

      public static CursorType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static CursorType valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • get

      public static CursorType get(String literal)
      Returns the 'Cursor Type' literal with the specified literal value.
    • getByName

      public static CursorType getByName(String name)
      Returns the 'Cursor Type' literal with the specified name.
    • get

      public static CursorType get(int value)
      Returns the 'Cursor Type' literal with the specified integer value.
    • getValue

      public int getValue()
      Specified by:
      getValue in interface org.eclipse.emf.common.util.Enumerator
    • getName

      public String getName()
      Specified by:
      getName in interface org.eclipse.emf.common.util.Enumerator
    • getLiteral

      public String getLiteral()
      Specified by:
      getLiteral in interface org.eclipse.emf.common.util.Enumerator
    • toString

      public String toString()
      Returns the literal value of the enumerator, which is its string representation.
      Overrides:
      toString in class Enum<CursorType>