public final enum

LineJoinType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.carto.styles.LineJoinType

Class Overview

Possible styles in which line segments are connected with each other.

Summary

Enum Values
LineJoinType  LINE_JOIN_TYPE_BEVEL  Line segments are connected with each other using bevel (straight line) connectors. 
LineJoinType  LINE_JOIN_TYPE_MITER  Line segments are connected with each other using miter connections. 
LineJoinType  LINE_JOIN_TYPE_NONE  Line segments are not connected with each other. 
LineJoinType  LINE_JOIN_TYPE_ROUND  Line segments are connected with each other using circle sectors resulting in
round corners. 
Public Methods
static LineJoinType swigToEnum(int swigValue)
final int swigValue()
static LineJoinType valueOf(String name)
final static LineJoinType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final LineJoinType LINE_JOIN_TYPE_BEVEL

Line segments are connected with each other using bevel (straight line) connectors. Fast
but results in an unnatural line.

public static final LineJoinType LINE_JOIN_TYPE_MITER

Line segments are connected with each other using miter connections. This is the preferred mode (fast and good looking generally).

public static final LineJoinType LINE_JOIN_TYPE_NONE

Line segments are not connected with each other. The fastest and ugliest.

public static final LineJoinType LINE_JOIN_TYPE_ROUND

Line segments are connected with each other using circle sectors resulting in
round corners. Slowest and prettiest.

Public Methods

public static LineJoinType swigToEnum (int swigValue)

public final int swigValue ()

public static LineJoinType valueOf (String name)

public static final LineJoinType[] values ()