1 Star 0 Fork 122

陶鸿南/zuul

forked from 吕焱飞/zuul 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
CommandWord.java 456 Bytes
Copy Edit Raw Blame History
陶鸿南 authored 2021-06-21 21:00 . yx.
/**
* Enumeration class CommandWord - write a description of the enum class here
*
* @author (your name here)
* @version (version number or date here)
*/
public enum CommandWord
{
HELP("help"),QUIT("quit"),GO("go"),EAT("eat"),PICK("pick"), BAG("bag"), FIGHT("fight"), USE("use");
private String name;
CommandWord(String name) {
this.name = name;
}
public String getName() {
return this.name;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/tao-hongnan/zuul.git
git@gitee.com:tao-hongnan/zuul.git
tao-hongnan
zuul
zuul
master

Search