public enum STPathFillMode extends java.lang.Enum<STPathFillMode>
Java class for ST_PathFillMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_PathFillMode"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="none"/> <enumeration value="norm"/> <enumeration value="lighten"/> <enumeration value="lightenLess"/> <enumeration value="darken"/> <enumeration value="darkenLess"/> </restriction> </simpleType>
Enum Constant and Description |
---|
DARKEN
Darken Path Fill
|
DARKEN_LESS
Darken Path Fill Less
|
LIGHTEN
Lighten Path Fill
|
LIGHTEN_LESS
Lighten Path Fill Less
|
NONE
No Path Fill
|
NORM
Normal Path Fill
|
Modifier and Type | Method and Description |
---|---|
static STPathFillMode |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static STPathFillMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static STPathFillMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STPathFillMode NONE
public static final STPathFillMode NORM
public static final STPathFillMode LIGHTEN
public static final STPathFillMode LIGHTEN_LESS
public static final STPathFillMode DARKEN
public static final STPathFillMode DARKEN_LESS
public static STPathFillMode[] values()
for (STPathFillMode c : STPathFillMode.values()) System.out.println(c);
public static STPathFillMode 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 nullpublic java.lang.String value()
public static STPathFillMode fromValue(java.lang.String v)
Copyright 2020 The Apache Software Foundation or its licensors, as applicable.