本文整理汇总了Java中com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto.getName方法的典型用法代码示例。如果您正苦于以下问题:Java EnumValueDescriptorProto.getName方法的具体用法?Java EnumValueDescriptorProto.getName怎么用?Java EnumValueDescriptorProto.getName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto
的用法示例。
在下文中一共展示了EnumValueDescriptorProto.getName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: EnumValueDescriptor
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入方法依赖的package包/类
private EnumValueDescriptor(
final FileDescriptor file,
final EnumDescriptor parent,
final Integer number) {
String name = "UNKNOWN_ENUM_VALUE_" + parent.getName() + "_" + number;
EnumValueDescriptorProto proto = EnumValueDescriptorProto
.newBuilder().setName(name).setNumber(number).build();
this.index = -1;
this.proto = proto;
this.file = file;
this.type = parent;
this.fullName = parent.getFullName() + '.' + proto.getName();
this.number = number;
// Don't add this descriptor into pool.
}
示例2: EnumValueDescriptor
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入方法依赖的package包/类
private EnumValueDescriptor (final EnumValueDescriptorProto proto,
final FileDescriptor file,
final EnumDescriptor parent,
final int index)
throws DescriptorValidationException {
this.index = index;
this.proto = proto;
this.file = file;
type = parent;
fullName = parent.getFullName () + '.' + proto.getName ();
file.pool.addSymbol (this);
file.pool.addEnumValueByNumber (this);
}
示例3: EnumValue
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入方法依赖的package包/类
private EnumValue(EnumType parent, EnumValueDescriptorProto proto, String path) {
super(parent, proto.getName(), path);
this.proto = proto;
}