public enum SVGProperty extends Enum<SVGProperty>
| Enum Constant and Description |
|---|
CLIP |
CLIP_PATH |
CLIP_RULE |
FILL |
FILL_OPACITY |
FILL_RULE |
FILTER |
MARKER |
MARKER_END |
MARKER_MID |
MARKER_START |
MASK |
SHAPE_RENDERING |
STOP_COLOR |
STOP_OPACITY |
STROKE |
STROKE_DASHARRAY |
STROKE_DASHOFFSET |
STROKE_LINECAP |
STROKE_LINEJOIN |
STROKE_MITERLIMIT |
STROKE_OPACITY |
STROKE_WIDTH |
| Modifier and Type | Method and Description |
|---|---|
static Set<String> |
properties() |
static SVGProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SVGProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVGProperty CLIP
public static final SVGProperty CLIP_PATH
public static final SVGProperty CLIP_RULE
public static final SVGProperty MASK
public static final SVGProperty FILTER
public static final SVGProperty STOP_COLOR
public static final SVGProperty STOP_OPACITY
public static final SVGProperty FILL
public static final SVGProperty FILL_RULE
public static final SVGProperty FILL_OPACITY
public static final SVGProperty MARKER
public static final SVGProperty MARKER_START
public static final SVGProperty MARKER_MID
public static final SVGProperty MARKER_END
public static final SVGProperty STROKE
public static final SVGProperty STROKE_DASHARRAY
public static final SVGProperty STROKE_DASHOFFSET
public static final SVGProperty STROKE_LINECAP
public static final SVGProperty STROKE_LINEJOIN
public static final SVGProperty STROKE_MITERLIMIT
public static final SVGProperty STROKE_OPACITY
public static final SVGProperty STROKE_WIDTH
public static final SVGProperty SHAPE_RENDERING
public static SVGProperty[] values()
for (SVGProperty c : SVGProperty.values()) System.out.println(c);
public static SVGProperty 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 nullCopyright © 2004–2025. All rights reserved.