Package org.apache.poi.hwmf.record
Enum Class HwmfFill.ColorUsage
- All Implemented Interfaces:
Serializable
,Comparable<HwmfFill.ColorUsage>
,Constable
- Enclosing class:
HwmfFill
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe color table contains 16-bit indices into the current logical palette in the playback device context.No color table exists.The color table contains RGB values -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic HwmfFill.ColorUsage
Returns the enum constant of this class with the specified name.static HwmfFill.ColorUsage[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DIB_RGB_COLORS
The color table contains RGB values -
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. The pixels in the DIB are indices into the current logical palette in the playback device context.
-
-
Field Details
-
flag
public final int flag
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-