You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
393 B
19 lines
393 B
package com.msb;
|
|
|
|
/**
|
|
* @Author bingor
|
|
* @Date 2022-09-29 21:17
|
|
* @Description: 方向枚举
|
|
* @Version: 1.0
|
|
*/
|
|
public enum DirEnum {
|
|
LEFT, RIGHT, UP, DOWN;
|
|
|
|
public static DirEnum valueOf(int ordinal) {
|
|
if (ordinal < 0 || ordinal >= values().length) {
|
|
throw new IndexOutOfBoundsException("Invalid ordinal");
|
|
}
|
|
return values()[ordinal];
|
|
}
|
|
}
|