public static enum InvPolyline.LineJoin extends Enum<InvPolyline.LineJoin>
Enum Constant and Description |
---|
Bevel
연결점 경사진 모양.
|
Miter
연결점이 뾰족한 모양.
|
Round
연결점이 둥근 모양.
|
Modifier and Type | Method and Description |
---|---|
static InvPolyline.LineJoin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvPolyline.LineJoin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvPolyline.LineJoin Miter
public static final InvPolyline.LineJoin Bevel
public static final InvPolyline.LineJoin Round
public static InvPolyline.LineJoin[] values()
for (InvPolyline.LineJoin c : InvPolyline.LineJoin.values()) System.out.println(c);
public static InvPolyline.LineJoin 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 null© 2019. iNavi Systems Corp. All rights reserved.