com.levigo.util.swing.colorpicker
Enum ColorPicker.Mode

java.lang.Object
  extended by java.lang.Enum<ColorPicker.Mode>
      extended by com.levigo.util.swing.colorpicker.ColorPicker.Mode
All Implemented Interfaces:
Serializable, Comparable<ColorPicker.Mode>
Enclosing class:
ColorPicker

public static enum ColorPicker.Mode
extends Enum<ColorPicker.Mode>


Enum Constant Summary
Blue
          Used to indicate when we're in "blue mode".
Brightness
          Used to indicate when we're in "brightness mode".
Green
          Used to indicate when we're in "green mode".
Hue
          Used to indicate when we're in "hue mode".
Red
          Used to indicate when we're in "red mode".
Saturation
          Used to indicate when we're in "saturation mode".
 
Field Summary
 boolean isHSB
           
 
Method Summary
static ColorPicker.Mode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ColorPicker.Mode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Hue

public static final ColorPicker.Mode Hue
Used to indicate when we're in "hue mode".


Saturation

public static final ColorPicker.Mode Saturation
Used to indicate when we're in "saturation mode".


Brightness

public static final ColorPicker.Mode Brightness
Used to indicate when we're in "brightness mode".


Red

public static final ColorPicker.Mode Red
Used to indicate when we're in "red mode".


Green

public static final ColorPicker.Mode Green
Used to indicate when we're in "green mode".


Blue

public static final ColorPicker.Mode Blue
Used to indicate when we're in "blue mode".

Field Detail

isHSB

public final boolean isHSB
Method Detail

values

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

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

valueOf

public static ColorPicker.Mode 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


Copyright © 1995-2020 levigo holding gmbh. All Rights Reserved.