public enum HwmfHatchStyle extends java.lang.Enum<HwmfHatchStyle>
| Enum Constant and Description | 
|---|
| HS_BDIAGONAL///// - A 45-degree upward, left-to-right hatch. | 
| HS_CROSS+++++ - A horizontal and vertical cross-hatch. | 
| HS_DIAGCROSSxxxxx - A 45-degree crosshatch. | 
| HS_FDIAGONAL\\\\\ - A 45-degree downward, left-to-right hatch. | 
| HS_HORIZONTAL----- - A horizontal hatch | 
| HS_VERTICAL||||| - A vertical hatch | 
| Modifier and Type | Method and Description | 
|---|---|
| static HwmfHatchStyle | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static HwmfHatchStyle[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final HwmfHatchStyle HS_HORIZONTAL
public static final HwmfHatchStyle HS_VERTICAL
public static final HwmfHatchStyle HS_FDIAGONAL
public static final HwmfHatchStyle HS_BDIAGONAL
public static final HwmfHatchStyle HS_CROSS
public static final HwmfHatchStyle HS_DIAGCROSS
public static HwmfHatchStyle[] values()
for (HwmfHatchStyle c : HwmfHatchStyle.values()) System.out.println(c);
public static HwmfHatchStyle 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 nullCopyright 2018 The Apache Software Foundation or its licensors, as applicable.