1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package frame.file;
|
| import frame.util.Util;
|
| public enum Direction {
| Normal, Convert;
| public Direction StringToDirection(String value) {
| if (Util.isEmptyStr(value)) {
| return Direction.Normal;
| }
|
| if (Direction.Convert.name().equalsIgnoreCase(value)) {
| return Direction.Convert;
| }
|
| return Direction.Normal;
| }
|
| }
|
|