提交 78a64705 编写于 作者: P panson

枚举类统一使用lombok

上级 bf634996
package github.javaguide.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
@Getter
public enum RpcConfigEnum {
RPC_CONFIG_PATH("rpc.properties"),
......@@ -7,13 +12,4 @@ public enum RpcConfigEnum {
private final String propertyValue;
RpcConfigEnum(String propertyValue) {
this.propertyValue = propertyValue;
}
public String getPropertyValue() {
return propertyValue;
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册