public enum ColorTable extends java.lang.Enum<ColorTable>
列挙型定数と説明 |
---|
cool
Linear change from blue to magenta [0/1]
|
copper
Dark to light copper brown [0/1]
|
cyclic
Cyclic colormap, spans 360 degrees of hue [0/360]
|
drywet
Goes from dry to wet colors [0/12]
|
gebco
Colors for GEBCO bathymetric charts [-7000/0]
|
globe
Colors for global bathy-topo relief [-10000/10000]
|
gray
Grayramp from black to white [0/1]
|
haxby
Bill Haxby's colortable for geoid & gravity [0/32]
|
hot
Black through red and yellow to white [0/1]
|
jet
Dark to light blue, white, yellow and red [0/1]
|
nighttime
Colors for DMSP-OLS Nighttime Lights Time Series [0/1]
|
no_green
For those who hate green [-32/+32]
|
ocean
white-green-blue bathymetry scale [-8000/0]
|
paired
Qualitative color map with 6 pairs of colors [0/12]
|
panoply
Default colormap of Panoply [0/16]
|
polar
Blue via white to red [-1/+1]
|
rainbow
Rainbow,// magenta-blue-cyan-green-yellow-red [0/300]
|
red2green
Polar scale from red to green via white [-1/+1]
|
relief
Wessel/Martinez colors for topography [-8000/+8000]
|
sealand
Smith bathymetry/topography scale [-6000/+3000]
|
seis
R-O-Y-G-B seismic tomography colors [-1/+1]
|
split
Like polar, but via black instead of white [-1/+1]
|
topo
Sandwell/Anderson colors for topography [-7000/+7000]
|
wysiwyg
20 well-separated RGB colors [0/20]
|
修飾子とタイプ | メソッドと説明 |
---|---|
static ColorTable |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static ColorTable[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final ColorTable cool
public static final ColorTable copper
public static final ColorTable cyclic
public static final ColorTable drywet
public static final ColorTable gebco
public static final ColorTable globe
public static final ColorTable gray
public static final ColorTable haxby
public static final ColorTable hot
public static final ColorTable jet
public static final ColorTable nighttime
public static final ColorTable no_green
public static final ColorTable ocean
public static final ColorTable panoply
public static final ColorTable paired
public static final ColorTable polar
public static final ColorTable rainbow
public static final ColorTable red2green
public static final ColorTable relief
public static final ColorTable sealand
public static final ColorTable seis
public static final ColorTable split
public static final ColorTable topo
public static final ColorTable wysiwyg
public static ColorTable[] values()
for(ColorTable c: ColorTable.values()) System.out.println(c);
public static ColorTable valueOf(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合