public static enum SuperTextView.ShaderMode extends java.lang.Enum<SuperTextView.ShaderMode>
SuperTextView.setStateDrawableMode(DrawableMode)
设置控件的Shader模式枚举常量和说明 |
---|
BOTTOM_TO_TOP
从下到上
|
LEFT_TO_RIGHT
从左到右
|
RIGHT_TO_LEFT
从右到左
|
TOP_TO_BOTTOM
从上到下
|
限定符和类型 | 字段和说明 |
---|---|
int |
code |
限定符和类型 | 方法和说明 |
---|---|
static SuperTextView.ShaderMode |
valueOf(int code) |
static SuperTextView.ShaderMode |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static SuperTextView.ShaderMode[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final SuperTextView.ShaderMode TOP_TO_BOTTOM
public static final SuperTextView.ShaderMode BOTTOM_TO_TOP
public static final SuperTextView.ShaderMode LEFT_TO_RIGHT
public static final SuperTextView.ShaderMode RIGHT_TO_LEFT
public static SuperTextView.ShaderMode[] values()
for (SuperTextView.ShaderMode c : SuperTextView.ShaderMode.values()) System.out.println(c);
public static SuperTextView.ShaderMode valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public static SuperTextView.ShaderMode valueOf(int code)