Enum Class HwmfFill.ColorUsage

java.lang.Object
java.lang.Enum<HwmfFill.ColorUsage>
org.apache.poi.hwmf.record.HwmfFill.ColorUsage
All Implemented Interfaces:
Serializable, Comparable<HwmfFill.ColorUsage>, Constable
Enclosing class:
HwmfFill

public static enum HwmfFill.ColorUsage extends 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 Details

    • DIB_RGB_COLORS

      public static final HwmfFill.ColorUsage DIB_RGB_COLORS
      The color table contains RGB values
    • DIB_PAL_COLORS

      public static final HwmfFill.ColorUsage DIB_PAL_COLORS
      The color table contains 16-bit indices into the current logical palette in the playback device context.
    • DIB_PAL_INDICES

      public static final HwmfFill.ColorUsage 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

      public static HwmfFill.ColorUsage[] 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

      public static HwmfFill.ColorUsage valueOf(String name)
      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 name
      NullPointerException - if the argument is null