public enum MarkerVertexType extends Enum<MarkerVertexType>
Enum Constant and Description |
---|
MARKER_END
Specifies that marker will be drawn only at the last vertex of element.
|
MARKER_MID
Specifies that marker will be drawn at every vertex except the first and last.
|
MARKER_START
Specifies that marker will be drawn only at the first vertex of element.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static MarkerVertexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MarkerVertexType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final MarkerVertexType MARKER_START
public static final MarkerVertexType MARKER_MID
public static final MarkerVertexType MARKER_END
public static MarkerVertexType[] values()
for (MarkerVertexType c : MarkerVertexType.values()) System.out.println(c);
public static MarkerVertexType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null
public String toString()
toString
in class Enum<MarkerVertexType>
Copyright © 1998–2022 iText Group NV. All rights reserved.