public static final enum

RoundedCornersDrawable.Type

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.facebook.drawee.drawable.RoundedCornersDrawable.Type

Summary

Enum Values
RoundedCornersDrawable.Type  CLIPPING  Clips the drawing of the drawable to be rounded. 
RoundedCornersDrawable.Type  OVERLAY_COLOR  Draws rounded corners on top of the underlying drawable by overlaying a solid color which is specified by setOverlayColor
Public Methods
static RoundedCornersDrawable.Type valueOf(String name)
final static Type[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final RoundedCornersDrawable.Type CLIPPING

Clips the drawing of the drawable to be rounded.

public static final RoundedCornersDrawable.Type OVERLAY_COLOR

Draws rounded corners on top of the underlying drawable by overlaying a solid color which is specified by setOverlayColor. This option should only be used when the background beneath the underlying drawable is static and of the same solid color.

Public Methods

public static RoundedCornersDrawable.Type valueOf (String name)

public static final Type[] values ()