public static enum Enums.JoinType extends Enum<Enums.JoinType>
| 枚举常量和说明 |
|---|
bevel
Specifies that a corner where two lines intersect is cut off at a 45 degree angle.
|
miter
Specifies that a corner where two lines intersect is sharp or clipped,
depending on the ShapeOutline.MiterLimit value.
|
round
Specifies that a corner where two lines intersect is rounded.
|
public static final Enums.JoinType bevel
public static final Enums.JoinType miter
public static final Enums.JoinType round
public static Enums.JoinType[] values()
for (Enums.JoinType c : Enums.JoinType.values()) System.out.println(c);
public static Enums.JoinType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All rights reserved.