Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static final enum

Path.Op

extends Enum <E extends  Enum <E>>
java.lang.Object
   ↳ java.lang.Enum <E extends  java.lang.Enum <E>>
     ↳ android.graphics.Path.Op

Class Overview

The logical operations that can be performed when combining two paths.

Summary

Enum Values
Path.Op   DIFFERENCE  Subtract the second path from the first path. 
Path.Op   INTERSECT  Intersect the two paths. 
Path.Op   REVERSE_DIFFERENCE  Subtract the first path from the second path. 
Path.Op   UNION  Union (inclusive-or) the two paths. 
Path.Op   XOR  Exclusive-or the two paths. 
Public Methods
static Path.Op valueOf ( String name)
final static Op[] values ()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Path.Op DIFFERENCE

Subtract the second path from the first path.

public static final Path.Op INTERSECT

Intersect the two paths.

public static final Path.Op REVERSE_DIFFERENCE

Subtract the first path from the second path.

public static final Path.Op UNION

Union (inclusive-or) the two paths.

public static final Path.Op XOR

Exclusive-or the two paths.

Public Methods

public static Path.Op valueOf ( String name)

public static final Op[] values ()