public enum LineEndType extends java.lang.Enum<LineEndType>
Enum Constant and Description |
---|
ARROW |
DIAMOND |
NONE |
OVAL |
STEALTH |
TRIANGLE |
Modifier and Type | Method and Description |
---|---|
static LineEndType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineEndType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineEndType ARROW
public static final LineEndType DIAMOND
public static final LineEndType NONE
public static final LineEndType OVAL
public static final LineEndType STEALTH
public static final LineEndType TRIANGLE
public static LineEndType[] values()
for (LineEndType c : LineEndType.values()) System.out.println(c);
public static LineEndType 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 nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.