static Qt.PenJoinStyle |
SvgMiterJoin
A miter join corresponding to the definition of a miter join in the {@link
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
MiterJoin
public static final Qt.PenJoinStyle MiterJoin
- The outer edges of the lines are extended to meet at an angle, and this area is filled.
BevelJoin
public static final Qt.PenJoinStyle BevelJoin
- The triangular notch between the two lines is filled.
RoundJoin
public static final Qt.PenJoinStyle RoundJoin
- A circular arc between the two lines is filled.
SvgMiterJoin
public static final Qt.PenJoinStyle SvgMiterJoin
- A miter join corresponding to the definition of a miter join in the SVG 1.2 Tiny specification.
MPenJoinStyle
public static final Qt.PenJoinStyle MPenJoinStyle
values
public static Qt.PenJoinStyle[] values()
valueOf
public static Qt.PenJoinStyle valueOf(java.lang.String name)
value
public int value()
- This function should return an integer value for the enum values of the enumeration that implements this interface.
- Specified by:
value in interface QtEnumerator
resolve
public static Qt.PenJoinStyle resolve(int value)
- Returns the PenJoinStyle constant with the specified int.
|