Added in API level 1

Paint.Cap

public static final enum Paint.Cap
extends Enum<Paint.Cap>

java.lang.Object
   ↳ java.lang.Enum<android.graphics.Paint.Cap>
     ↳ android.graphics.Paint.Cap


The Cap specifies the treatment for the beginning and ending of stroked lines and paths. The default is BUTT.

Summary

Enum values

Paint.Cap  BUTT

The stroke ends with the path, and does not project beyond it. 

Paint.Cap  ROUND

The stroke projects out as a semicircle, with the center at the end of the path. 

Paint.Cap  SQUARE

The stroke projects out as a square, with the center at the end of the path. 

Public methods

static Paint.Cap valueOf(String name)
static final Cap[] values()

Inherited methods

Enum values

BUTT

Added in API level 1
public static final Paint.Cap BUTT

The stroke ends with the path, and does not project beyond it.

ROUND

Added in API level 1
public static final Paint.Cap ROUND

The stroke projects out as a semicircle, with the center at the end of the path.

SQUARE

Added in API level 1
public static final Paint.Cap SQUARE

The stroke projects out as a square, with the center at the end of the path.

Public methods

valueOf

public static Paint.Cap valueOf (String name)

Parameters
name String

Returns
Paint.Cap

values

public static final Cap[] values ()

Returns
Cap[]