Package com.naver.maps.map.overlay
Enum PolylineOverlay.LineJoin
- java.lang.Object
-
- java.lang.Enum<PolylineOverlay.LineJoin>
-
- com.naver.maps.map.overlay.PolylineOverlay.LineJoin
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PolylineOverlay.LineJoin>
- Enclosing class:
- PolylineOverlay
public static enum PolylineOverlay.LineJoin extends java.lang.Enum<PolylineOverlay.LineJoin>
연결점의 모양.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PolylineOverlay.LineJoin
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PolylineOverlay.LineJoin[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Miter
public static final PolylineOverlay.LineJoin Miter
미터. 연결점이 뾰족하게 그려집니다.
-
Bevel
public static final PolylineOverlay.LineJoin Bevel
사면. 연결점에서 뾰족하게 튀어나온 부분이 잘려나갑니다.
-
Round
public static final PolylineOverlay.LineJoin Round
원형. 연결점이 둥글게 그려집니다.
-
-
Method Detail
-
values
public static PolylineOverlay.LineJoin[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PolylineOverlay.LineJoin c : PolylineOverlay.LineJoin.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PolylineOverlay.LineJoin valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-