全パッケージ クラス階層 このパッケージ 前項目 次項目 インデックス
java.lang.Object
   |
   +----java.awt.image.ColorModel
           |
           +----java.awt.image.IndexColorModel
このクラスの多くのメソッドは final である。この理由は、下層のネイティブ なグラフィックスのコードがこのクラスの設計と操作に関しての前提 を持ち、これらの前提がこのクラスで final になっているメソッ ドの実装に反映されているからである。このクラスをサブクラス化す ることはできるが、final メソッドの動作を変更することはできない。
 
 IndexColorModel(int, int, byte[], byte[], byte[])
	IndexColorModel(int, int, byte[], byte[], byte[])
   IndexColorModel(int, int, byte[], byte[], byte[], int)
	IndexColorModel(int, int, byte[], byte[], byte[], int)
   IndexColorModel(int, int, byte[], byte[], byte[], byte[])
	IndexColorModel(int, int, byte[], byte[], byte[], byte[])
   IndexColorModel(int, int, byte[], int, boolean)
	IndexColorModel(int, int, byte[], int, boolean)
   IndexColorModel(int, int, byte[], int, boolean, int)
	IndexColorModel(int, int, byte[], int, boolean, int)
   
 getAlpha(int)
	getAlpha(int)
   getAlphas(byte[])
	getAlphas(byte[])
   getBlue(int)
	getBlue(int)
   getBlues(byte[])
	getBlues(byte[])
   getGreen(int)
	getGreen(int)
   getGreens(byte[])
	getGreens(byte[])
   getMapSize()
	getMapSize()
   getRGB(int)
	getRGB(int)
   getRed(int)
	getRed(int)
   getReds(byte[])
	getReds(byte[])
   getTransparentPixel()
	getTransparentPixel()
   
 IndexColorModel
IndexColorModel
  public IndexColorModel(int bits,
                         int size,
                         byte r[],
                         byte g[],
                         byte b[])
 IndexColorModel
IndexColorModel
  public IndexColorModel(int bits,
                         int size,
                         byte r[],
                         byte g[],
                         byte b[],
                         int trans)
 IndexColorModel
IndexColorModel
  public IndexColorModel(int bits,
                         int size,
                         byte r[],
                         byte g[],
                         byte b[],
                         byte a[])
 IndexColorModel
IndexColorModel
  public IndexColorModel(int bits,
                         int size,
                         byte cmap[],
                         int start,
                         boolean hasalpha)
 IndexColorModel
IndexColorModel
  public IndexColorModel(int bits,
                         int size,
                         byte cmap[],
                         int start,
                         boolean hasalpha,
                         int trans)
 
 getMapSize
getMapSize
public final int getMapSize()
 getTransparentPixel
getTransparentPixel
public final int getTransparentPixel()
 getReds
getReds
public final void getReds(byte r[])
 getGreens
getGreens
public final void getGreens(byte g[])
 getBlues
getBlues
public final void getBlues(byte b[])
 getAlphas
getAlphas
public final void getAlphas(byte a[])
 getRed
getRed
public final int getRed(int pixel)
 getGreen
getGreen
public final int getGreen(int pixel)
 getBlue
getBlue
public final int getBlue(int pixel)
 getAlpha
getAlpha
public final int getAlpha(int pixel)
 getRGB
getRGB
public final int getRGB(int pixel)
全パッケージ クラス階層 このパッケージ 前項目 次項目 インデックス