public static enum SVGPathParser.MarkerType extends Enum<SVGPathParser.MarkerType>
| Enum Constant and Description |
|---|
END
Marker at the end of the path.
|
MID
Markers at intermediate vertices.
|
START
Marker at the start of the path.
|
| Modifier and Type | Method and Description |
|---|---|
static SVGPathParser.MarkerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SVGPathParser.MarkerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVGPathParser.MarkerType START
public static final SVGPathParser.MarkerType MID
public static final SVGPathParser.MarkerType END
public static SVGPathParser.MarkerType[] values()
for (SVGPathParser.MarkerType c : SVGPathParser.MarkerType.values()) System.out.println(c);
public static SVGPathParser.MarkerType 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 © 2026. All rights reserved.