public static enum VectorGraphicsPainter.FillType extends Enum<VectorGraphicsPainter.FillType>
Enum Constant and Description |
---|
EVEN_ODD
Specifies that "inside" is computed by an odd number of edge crossings.
|
WINDING
Specifies that "inside" is computed by a non-zero sum of signed edge crossings.
|
Modifier and Type | Method and Description |
---|---|
static VectorGraphicsPainter.FillType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorGraphicsPainter.FillType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorGraphicsPainter.FillType EVEN_ODD
public static final VectorGraphicsPainter.FillType WINDING
public static VectorGraphicsPainter.FillType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static VectorGraphicsPainter.FillType[] values()
for (VectorGraphicsPainter.FillType c : VectorGraphicsPainter.FillType.values()) System.out.println(c);