Enum HemfPlusBrush.EmfPlusBrushType
- java.lang.Object
-
- java.lang.Enum<HemfPlusBrush.EmfPlusBrushType>
-
- org.apache.poi.hemf.record.emfplus.HemfPlusBrush.EmfPlusBrushType
-
- All Implemented Interfaces:
Serializable,Comparable<HemfPlusBrush.EmfPlusBrushType>
- Enclosing class:
- HemfPlusBrush
public static enum HemfPlusBrush.EmfPlusBrushType extends Enum<HemfPlusBrush.EmfPlusBrushType>
The BrushType enumeration defines types of graphics brushes, which are used to fill graphics regions.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HATCH_FILLLINEAR_GRADIENTPATH_GRADIENTSOLID_COLORTEXTURE_FILL
-
Field Summary
Fields Modifier and Type Field Description Supplier<? extends HemfPlusBrush.EmfPlusBrushData>constructorintid
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HemfPlusBrush.EmfPlusBrushTypevalueOf(int id)Returns the enum constant of this type with the specified name.static HemfPlusBrush.EmfPlusBrushTypevalueOf(String name)Returns the enum constant of this type with the specified name.static HemfPlusBrush.EmfPlusBrushType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOLID_COLOR
public static final HemfPlusBrush.EmfPlusBrushType SOLID_COLOR
-
HATCH_FILL
public static final HemfPlusBrush.EmfPlusBrushType HATCH_FILL
-
TEXTURE_FILL
public static final HemfPlusBrush.EmfPlusBrushType TEXTURE_FILL
-
PATH_GRADIENT
public static final HemfPlusBrush.EmfPlusBrushType PATH_GRADIENT
-
LINEAR_GRADIENT
public static final HemfPlusBrush.EmfPlusBrushType LINEAR_GRADIENT
-
-
Field Detail
-
id
public final int id
-
constructor
public final Supplier<? extends HemfPlusBrush.EmfPlusBrushData> constructor
-
-
Method Detail
-
values
public static HemfPlusBrush.EmfPlusBrushType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HemfPlusBrush.EmfPlusBrushType c : HemfPlusBrush.EmfPlusBrushType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HemfPlusBrush.EmfPlusBrushType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
valueOf
public static HemfPlusBrush.EmfPlusBrushType valueOf(int id)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
id- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-