com.trolltech.qt.gui
Enum QAbstractSlider.SliderChange

java.lang.Object
  extended by java.lang.Enum<QAbstractSlider.SliderChange>
      extended by com.trolltech.qt.gui.QAbstractSlider.SliderChange
All Implemented Interfaces:
QtEnumerator, java.io.Serializable, java.lang.Comparable<QAbstractSlider.SliderChange>
Enclosing class:
QAbstractSlider

public static enum QAbstractSlider.SliderChange
extends java.lang.Enum<QAbstractSlider.SliderChange>
implements QtEnumerator

Press link for info on QAbstractSlider.SliderChange


Enum Constant Summary
SliderOrientationChange
          Internal.
SliderRangeChange
          Internal.
SliderStepsChange
          Internal.
SliderValueChange
          Internal.
 
Method Summary
static QAbstractSlider.SliderChange resolve(int value)
           
 int value()
           
static QAbstractSlider.SliderChange valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static QAbstractSlider.SliderChange[] 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

SliderRangeChange

public static final QAbstractSlider.SliderChange SliderRangeChange
Internal.


SliderOrientationChange

public static final QAbstractSlider.SliderChange SliderOrientationChange
Internal.


SliderStepsChange

public static final QAbstractSlider.SliderChange SliderStepsChange
Internal.


SliderValueChange

public static final QAbstractSlider.SliderChange SliderValueChange
Internal.

Method Detail

values

public static final QAbstractSlider.SliderChange[] 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(QAbstractSlider.SliderChange c : QAbstractSlider.SliderChange.values())
        System.out.println(c);

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

valueOf

public static QAbstractSlider.SliderChange 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

value

public int value()
Specified by:
value in interface QtEnumerator

resolve

public static QAbstractSlider.SliderChange resolve(int value)