|
PDF Clown 0.1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<LineJoinEnum> org.pdfclown.documents.contents.LineJoinEnum
@PDF(value=PDF10) public enum LineJoinEnum
Shape to be used at the corners of stroked paths [PDF:1.6:4.3.2].
Enum Constant Summary | |
---|---|
Bevel
Squared-off line join. |
|
Miter
Sharp line join. |
|
Round
Rounded line join. |
Method Summary | |
---|---|
int |
getCode()
|
int |
toAwt()
Converts this constant into its equivalent AWT code. |
static LineJoinEnum |
valueOf(int code)
|
static LineJoinEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LineJoinEnum[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
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 |
Enum Constant Detail |
---|
public static final LineJoinEnum Miter
public static final LineJoinEnum Round
public static final LineJoinEnum Bevel
Method Detail |
---|
public static LineJoinEnum[] values()
for (LineJoinEnum c : LineJoinEnum.values()) System.out.println(c);
public static LineJoinEnum 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 nullpublic static LineJoinEnum valueOf(int code)
public int getCode()
public int toAwt()
BasicStroke.JOIN_BEVEL
,
BasicStroke.JOIN_MITER
,
BasicStroke.JOIN_ROUND
|
PDF Clown 0.1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |