Android APIs
public static final enum

Path.Op

extends Enum<Path.Op>
java.lang.Object
   ↳ java.lang.Enum<android.graphics.Path.Op>
     ↳ 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

Added in API level 19

Subtract the second path from the first path.

public static final Path.Op INTERSECT

Added in API level 19

Intersect the two paths.

public static final Path.Op REVERSE_DIFFERENCE

Added in API level 19

Subtract the first path from the second path.

public static final Path.Op UNION

Added in API level 19

Union (inclusive-or) the two paths.

public static final Path.Op XOR

Added in API level 19

Exclusive-or the two paths.

Public Methods


public static Path.Op valueOf (String name)

Added in API level 19

public static final Op[] values ()

Added in API level 19