public static enum HwmfBitmapDib.BitCount extends java.lang.Enum<HwmfBitmapDib.BitCount>
Enum Constant and Description |
---|
BI_BITCOUNT_0
The image SHOULD be in either JPEG or PNG format.
|
BI_BITCOUNT_1
Each pixel in the bitmap is represented by a single bit.
|
BI_BITCOUNT_2
Each pixel in the bitmap is represented by a 4-bit index into the color table, and each byte
contains 2 pixels.
|
BI_BITCOUNT_3
Each pixel in the bitmap is represented by an 8-bit index into the color table, and each byte
contains 1 pixel.
|
BI_BITCOUNT_4
Each pixel in the bitmap is represented by a 16-bit value.
|
BI_BITCOUNT_5
The bitmap has a maximum of 2^24 colors, and the Colors field of DIB is
NULL.
|
BI_BITCOUNT_6
The bitmap has a maximum of 2^24 colors.
|
Modifier and Type | Method and Description |
---|---|
static HwmfBitmapDib.BitCount |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HwmfBitmapDib.BitCount[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HwmfBitmapDib.BitCount BI_BITCOUNT_0
public static final HwmfBitmapDib.BitCount BI_BITCOUNT_1
public static final HwmfBitmapDib.BitCount BI_BITCOUNT_2
public static final HwmfBitmapDib.BitCount BI_BITCOUNT_3
public static final HwmfBitmapDib.BitCount BI_BITCOUNT_4
public static final HwmfBitmapDib.BitCount BI_BITCOUNT_5
public static final HwmfBitmapDib.BitCount BI_BITCOUNT_6
public static HwmfBitmapDib.BitCount[] values()
for (HwmfBitmapDib.BitCount c : HwmfBitmapDib.BitCount.values()) System.out.println(c);
public static HwmfBitmapDib.BitCount valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.