Enum Class GradientDrawable.Orientation
java.lang.Object
java.lang.Enum<GradientDrawable.Orientation>
icyllis.modernui.graphics.drawable.GradientDrawable.Orientation
- All Implemented Interfaces:
Serializable
,Comparable<GradientDrawable.Orientation>
,Constable
- Enclosing class:
GradientDrawable
Controls how the gradient is oriented relative to the drawable's bounds
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptiondraw the gradient from the bottom-left to the top-rightdraw the gradient from the bottom to the topdraw the gradient from the bottom-right to the top-leftdraw the gradient from the left to the rightdraw the gradient from the right to the leftdraw the gradient from the top-left to the bottom-rightdraw the gradient from the top to the bottomdraw the gradient from the top-right to the bottom-left -
Method Summary
Modifier and TypeMethodDescriptionstatic GradientDrawable.Orientation
Returns the enum constant of this class with the specified name.static GradientDrawable.Orientation[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TOP_BOTTOM
draw the gradient from the top to the bottom -
TR_BL
draw the gradient from the top-right to the bottom-left -
RIGHT_LEFT
draw the gradient from the right to the left -
BR_TL
draw the gradient from the bottom-right to the top-left -
BOTTOM_TOP
draw the gradient from the bottom to the top -
BL_TR
draw the gradient from the bottom-left to the top-right -
LEFT_RIGHT
draw the gradient from the left to the right -
TL_BR
draw the gradient from the top-left to the bottom-right
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-