Most visited

Recently visited

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

From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum values

BUTT

Added in API level 1
Paint.Cap BUTT

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

ROUND

Added in API level 1
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
Paint.Cap SQUARE

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

Public methods

valueOf

Added in API level 1
Paint.Cap valueOf (String name)

Parameters
name String
Returns
Paint.Cap

values

Added in API level 1
Cap[] values ()

Returns
Cap[]

Hooray!