Enum Class NinePatch.Mode
- All Implemented Interfaces:
Serializable,Comparable<NinePatch.Mode>,Constable
- Enclosing class:
- NinePatch
The mode of a nine-patch painter defines how it fills the area between the corners.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe texture is stretched to fill the edges and the center.The texture is tiled to fill the edges and the center. -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable NinePatch.ModefromString(String str)Deserializes a nine-patch mode from a string.static NinePatch.ModeReturns the enum constant of this class with the specified name.static NinePatch.Mode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRETCHING
The texture is stretched to fill the edges and the center. This is the default mode. -
TILING
The texture is tiled to fill the edges and the center.
-
-
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
-
fromString
Deserializes a nine-patch mode from a string.- Parameters:
str- the mode string- Returns:
- the mode, or null if the string is invalid
- Since:
- 4.0.0
-