我是 protobuf 用法的新手。
我打算在其中编写带有枚举的protobuf def。
有什么方法可以在其中提供 id、value 和描述。
编译后我想生成的枚举应该和下面的例子一样
enum Sample{
W(0, "W"), P(0, "P"), C(0, "C"), B(0, "B")
private final int id;
private final String value;
private Status(int id, String value) {
this.id= id;
this.value = value;
}
}
非常感谢任何帮助。