All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shz.image.enums.Direction Maven / Gradle / Ivy

The newest version!
package shz.image.enums;

import shz.core.enums.OrdinalCodeEnum;

public enum Direction implements OrdinalCodeEnum {
    UP("上"),
    DOWN("下"),
    LEFT("左"),
    RIGHT("右"),

    ;
    private final String value;

    Direction(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy