public static enum LLDWPainter.DrawingCap extends Enum<LLDWPainter.DrawingCap>
Enum Constant and Description |
---|
DRAWING_ENDOFLINE_NONE
No specific cap is drawn.
|
DRAWING_ENDOFLINE_PERPENDICULAR
Cap is perpendicular to the line.
|
DRAWING_ENDOFLINE_ROUNDED
Cap is represented by a semi circle.
|
Modifier and Type | Field and Description |
---|---|
int |
val
ej.drawing native internal cap representation.
|
Modifier and Type | Method and Description |
---|---|
static LLDWPainter.DrawingCap |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LLDWPainter.DrawingCap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LLDWPainter.DrawingCap DRAWING_ENDOFLINE_NONE
public static final LLDWPainter.DrawingCap DRAWING_ENDOFLINE_PERPENDICULAR
public static final LLDWPainter.DrawingCap DRAWING_ENDOFLINE_ROUNDED
public static LLDWPainter.DrawingCap 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 nullpublic static LLDWPainter.DrawingCap[] values()
for (LLDWPainter.DrawingCap c : LLDWPainter.DrawingCap.values()) System.out.println(c);