public static enum HwmfFill.ColorUsage extends java.lang.Enum<HwmfFill.ColorUsage>
| Enum Constant and Description |
|---|
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
|
| Modifier and Type | Field and Description |
|---|---|
int |
flag |
| Modifier and Type | Method and Description |
|---|---|
static HwmfFill.ColorUsage |
valueOf(int flag) |
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.
|
public static final HwmfFill.ColorUsage DIB_RGB_COLORS
public static final HwmfFill.ColorUsage DIB_PAL_COLORS
public static final HwmfFill.ColorUsage DIB_PAL_INDICES
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 namejava.lang.NullPointerException - if the argument is nullpublic static HwmfFill.ColorUsage valueOf(int flag)
Copyright 2021 The Apache Software Foundation or its licensors, as applicable.