|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<HwmfFill.ColorUsage>
org.apache.poi.hwmf.record.HwmfFill.ColorUsage
public static enum HwmfFill.ColorUsage
The ColorUsage Enumeration (a 16-bit unsigned integer) specifies whether a color table exists in a device-independent bitmap (DIB) and how to interpret its values, i.e. if contains explicit RGB values or indexes into a palette.
| Enum Constant Summary | |
|---|---|
DIB_PAL_COLORS
The color table contains 16-bit indices into the current logical palette in the playback device context. |
|
DIB_PAL_INDICES
No color table exists. |
|
DIB_RGB_COLORS
The color table contains RGB values |
|
| Field Summary | |
|---|---|
int |
flag
|
| Method Summary | |
|---|---|
static HwmfFill.ColorUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static HwmfFill.ColorUsage[] |
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 |
|---|
public static final HwmfFill.ColorUsage DIB_RGB_COLORS
public static final HwmfFill.ColorUsage DIB_PAL_COLORS
public static final HwmfFill.ColorUsage DIB_PAL_INDICES
| Field Detail |
|---|
public final int flag
| Method Detail |
|---|
public static HwmfFill.ColorUsage[] values()
for (HwmfFill.ColorUsage c : HwmfFill.ColorUsage.values()) System.out.println(c);
public static HwmfFill.ColorUsage 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 name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||