lt.monarch.chart.style.enums
Enum ColorPalette

java.lang.Object
  extended by java.lang.Enum<ColorPalette>
      extended by lt.monarch.chart.style.enums.ColorPalette
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ColorPalette>, StyleObject

public enum ColorPalette
extends java.lang.Enum<ColorPalette>
implements StyleObject

Color palette enumeration


Enum Constant Summary
Enum Constant and Description
DEFAULT_CONTOUR_PALETTE
           
DEFAULT_DENSITY_PALETTE
           
DEFAULT_PALETTE
           
DEFAULT_SURFACE_PALETTE
           
GREY_PALETTE
           
 
Method Summary
Modifier and Type Method and Description
static java.awt.Color[] createDefaultDensityPalette(int levelCount)
          Creates a default palette for a density map.
 java.awt.Color[] getPalette(int levelCount)
           
static int nextInt(int lower, int higher)
          Return random integer number between lower and higher
static ColorPalette valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ColorPalette[] 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

DEFAULT_SURFACE_PALETTE

public static final ColorPalette DEFAULT_SURFACE_PALETTE

DEFAULT_PALETTE

public static final ColorPalette DEFAULT_PALETTE

GREY_PALETTE

public static final ColorPalette GREY_PALETTE

DEFAULT_CONTOUR_PALETTE

public static final ColorPalette DEFAULT_CONTOUR_PALETTE

DEFAULT_DENSITY_PALETTE

public static final ColorPalette DEFAULT_DENSITY_PALETTE
Method Detail

values

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

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

valueOf

public static ColorPalette 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
java.lang.NullPointerException - if the argument is null

getPalette

public java.awt.Color[] getPalette(int levelCount)

createDefaultDensityPalette

public static java.awt.Color[] createDefaultDensityPalette(int levelCount)
Creates a default palette for a density map.

Parameters:
levelCount - count of palette entries
Returns:
default surface fill palette

nextInt

public static int nextInt(int lower,
                          int higher)
Return random integer number between lower and higher

Parameters:
lower - start of interval
higher - end of interval
Returns:
random integer number