public enum ReflectMethod extends Enum<ReflectMethod>
8.3.4 渐变 图 28
| 枚举常量和说明 |
|---|
Column
竖轴对称翻转
具体效果见 图 28 Column
|
Normal
普通重复
具体效果见 图 28 Normal
|
Row
横轴对称翻转
具体效果见 图 28 Row
|
RowAndColumn
十字轴对称翻转
具体效果见 图 28 Row And Column
|
| 限定符和类型 | 方法和说明 |
|---|---|
static ReflectMethod |
getInstance(String method)
获取 翻转绘制效果 实例
|
static ReflectMethod |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static ReflectMethod[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ReflectMethod Normal
具体效果见 图 28 Normal
public static final ReflectMethod Column
具体效果见 图 28 Column
public static final ReflectMethod Row
具体效果见 图 28 Row
public static final ReflectMethod RowAndColumn
具体效果见 图 28 Row And Column
public static ReflectMethod[] values()
for (ReflectMethod c : ReflectMethod.values()) System.out.println(c);
public static ReflectMethod valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static ReflectMethod getInstance(String method)
method - 效果名称Copyright © 2021. All rights reserved.