net.refractions.udig.ui.palette
Enum SchemeType

java.lang.Object
  extended by java.lang.Enum<SchemeType>
      extended by net.refractions.udig.ui.palette.SchemeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SchemeType>

Deprecated.

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

Enumeration on SchemeType.

Since:
0.9.0
Author:
jgarnett

Enum Constant Summary
DIVERGING
          Deprecated. Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range.
QUALITATIVE
          Deprecated. Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes.
SEQUENTIAL
          Deprecated. Sequential schemes are suited to ordered data that progress from low to high.
 
Field Summary
 InternationalString description
          Deprecated. description field
 InternationalString display
          Deprecated. display field
 
Method Summary
static SchemeType valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static SchemeType[] values()
          Deprecated. 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

SEQUENTIAL

public static final SchemeType SEQUENTIAL
Deprecated. 
Sequential schemes are suited to ordered data that progress from low to high.

Lightness steps dominate the look of these schemes, with light colors for low data values to dark colors for high data values.


DIVERGING

public static final SchemeType DIVERGING
Deprecated. 
Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range.

The critical class or break in the middle of the legend is emphasized with light colors and low and high extremes are emphasized with dark colors that have contrasting hues.


QUALITATIVE

public static final SchemeType QUALITATIVE
Deprecated. 
Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes.

Qualitative schemes are best suited to representing nominal or categorical data.

Field Detail

description

public final InternationalString description
Deprecated. 
description field


display

public final InternationalString display
Deprecated. 
display field

Method Detail

values

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

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

valueOf

public static SchemeType valueOf(java.lang.String name)
Deprecated. 
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