我是新来的protobuf使用。
我计划写的protobuf高清与它枚举(一个或多个)。
有没有什么办法来提供它的ID,价值,以及描述。
编译后我想生成的枚举应相当于如下面的例子
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;
}
}
任何帮助是非常赞赏。