|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<HwmfBrushStyle>
org.apache.poi.hwmf.record.HwmfBrushStyle
public enum HwmfBrushStyle
A 16-bit unsigned integer that defines the brush style. The legal values for this field are defined as follows: if the value is not BS_PATTERN, BS_DIBPATTERNPT MUST be assumed.
Enum Constant Summary | |
---|---|
BS_DIBPATTERN
A pattern brush specified by a DIB. |
|
BS_DIBPATTERN8X8
Not supported |
|
BS_DIBPATTERNPT
A pattern brush specified by a DIB. |
|
BS_HATCHED
A brush that paints a predefined simple pattern, or "hatch", onto a solid background. |
|
BS_INDEXED
Not supported |
|
BS_MONOPATTERN
Not supported |
|
BS_NULL
A brush that does nothing. |
|
BS_PATTERN
A brush that paints a pattern defined by a bitmap, which MAY be a Bitmap16 Object or a DeviceIndependentBitmap (DIB) Object. |
|
BS_PATTERN8X8
Not supported |
|
BS_SOLID
A brush that paints a single, constant color, either solid or dithered. |
Method Summary | |
---|---|
static HwmfBrushStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static HwmfBrushStyle[] |
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 HwmfBrushStyle BS_SOLID
public static final HwmfBrushStyle BS_NULL
public static final HwmfBrushStyle BS_HATCHED
public static final HwmfBrushStyle BS_PATTERN
public static final HwmfBrushStyle BS_INDEXED
public static final HwmfBrushStyle BS_DIBPATTERN
public static final HwmfBrushStyle BS_DIBPATTERNPT
public static final HwmfBrushStyle BS_PATTERN8X8
public static final HwmfBrushStyle BS_DIBPATTERN8X8
public static final HwmfBrushStyle BS_MONOPATTERN
Method Detail |
---|
public static HwmfBrushStyle[] values()
for (HwmfBrushStyle c : HwmfBrushStyle.values()) System.out.println(c);
public static HwmfBrushStyle 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 |