本文整理汇总了Java中com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto类的典型用法代码示例。如果您正苦于以下问题:Java EnumValueDescriptorProto类的具体用法?Java EnumValueDescriptorProto怎么用?Java EnumValueDescriptorProto使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
EnumValueDescriptorProto类属于com.google.protobuf.DescriptorProtos包,在下文中一共展示了EnumValueDescriptorProto类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createEnum
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
/**
* TODO (guptasu): Only needed to create NullValue enum. Check if this can be removed.
* Create the Protobuf.Enum instance from enumDescriptorProto.
*/
private static Enum createEnum(String enumName,
EnumDescriptorProto enumDescriptorProto, String fileName) {
com.google.protobuf.Enum.Builder coreEnumBuilder =
com.google.protobuf.Enum.newBuilder().setName(enumName);
coreEnumBuilder.setSyntax(Syntax.SYNTAX_PROTO3);
for (EnumValueDescriptorProto value : enumDescriptorProto.getValueList()) {
com.google.protobuf.EnumValue.Builder coreEnumValueBuilder =
com.google.protobuf.EnumValue.newBuilder();
coreEnumValueBuilder.setName(value.getName()).setNumber(value.getNumber());
coreEnumBuilder.addEnumvalue(coreEnumValueBuilder.build());
}
coreEnumBuilder.setSourceContext(SourceContext.newBuilder().setFileName(fileName));
return coreEnumBuilder.build();
}
示例2: 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.
}
示例3: testPackedEnumField
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
public void testPackedEnumField() throws Exception {
FileDescriptorProto fileDescriptorProto = FileDescriptorProto.newBuilder()
.setName("foo.proto")
.addEnumType(EnumDescriptorProto.newBuilder()
.setName("Enum")
.addValue(EnumValueDescriptorProto.newBuilder()
.setName("FOO")
.setNumber(1)
.build())
.build())
.addMessageType(DescriptorProto.newBuilder()
.setName("Message")
.addField(FieldDescriptorProto.newBuilder()
.setName("foo")
.setTypeName("Enum")
.setNumber(1)
.setLabel(FieldDescriptorProto.Label.LABEL_REPEATED)
.setOptions(DescriptorProtos.FieldOptions.newBuilder()
.setPacked(true)
.build())
.build())
.build())
.build();
Descriptors.FileDescriptor.buildFrom(
fileDescriptorProto, new FileDescriptor[0]);
}
示例4: generateEnum
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
private EnumDescriptorProto generateEnum(Enum e) {
EnumDescriptorProto.Builder builder = EnumDescriptorProto.newBuilder();
builder.setName(getSimpleName(e.getName()));
for (EnumValue value : e.getEnumvalueList()) {
EnumValueDescriptorProto.Builder valueBuilder = EnumValueDescriptorProto.newBuilder();
valueBuilder.setName(value.getName());
valueBuilder.setNumber(value.getNumber());
valueBuilder.setOptions(generateEnumValueOptions(value));
builder.addValue(valueBuilder.build());
}
builder.setOptions(generateEnumOptions(e));
return builder.build();
}
示例5: EnumType
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
private EnumType(ProtoContainerElement parent, EnumDescriptorProto proto, String path) {
super(parent, proto.getName(), path);
this.proto = proto;
// Build values.
ImmutableList.Builder<EnumValue> valuesBuilder = ImmutableList.builder();
List<EnumValueDescriptorProto> valueProtos = proto.getValueList();
for (int i = 0; i < valueProtos.size(); i++) {
EnumValueDescriptorProto value = valueProtos.get(i);
String childPath = buildPath(path, EnumDescriptorProto.VALUE_FIELD_NUMBER, i);
valuesBuilder.add(EnumValue.create(this, value, childPath));
}
values = valuesBuilder.build();
}
示例6: decompile
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
protected void decompile(EnumDescriptorProto enumDescriptor) throws IOException {
indentedFormat("enum %s {", enumDescriptor.getName());
indent++;
if (enumDescriptor.hasOptions()) {
decompileOptions(enumDescriptor.getOptions());
}
for (EnumValueDescriptorProto value : enumDescriptor.getValueList()) {
indentedFormat("%s = %d%s;", value.getName(), value.getNumber(),
value.hasOptions() ? bracketedOptions(value.getOptions()) : "");
}
indent--;
indentedFormat("}");
}
示例7: 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);
}
示例8: exitEnumField
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
@Override
public void exitEnumField(final EnumFieldContext ctx) {
final EnumValueDescriptorProto.Builder enumValueBuilder =
EnumValueDescriptorProto.Builder.class.cast(scopes.getProtoBuilder());
enumValueBuilder.setName(ctx.identifier().getText()).setNumber(
Integer.decode(ctx.enumValue().getText()));
scopes.popScope();
}
示例9: buildAllOptions
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
private void buildAllOptions(final EnumDescriptorProto.Builder proto) {
if (!buildOptions(proto.getOptionsBuilder())) {
proto.clearOptions();
}
for (final EnumValueDescriptorProto.Builder enumValueProto : proto.getValueBuilderList()) {
if (!buildOptions(enumValueProto.getOptionsBuilder())) {
enumValueProto.clearOptions();
}
}
}
示例10: isCanonical
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
private boolean isCanonical(final EnumDescriptorProto enumProto) {
if (enumProto.hasOptions() && enumProto.getOptions().getUninterpretedOptionCount() > 0) {
return false;
}
for (final EnumValueDescriptorProto enumValue : enumProto.getValueList()) {
if (enumValue.hasOptions() && enumValue.getOptions().getUninterpretedOptionCount() > 0) {
return false;
}
}
return true;
}
示例11: setEnumFields
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
public void setEnumFields(List<EnumValueDescriptorProto> enumFields) {
this.enumFields = enumFields;
}
示例12: getOptions
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
public static List<Option> getOptions(EnumValueDescriptorProto descriptor) {
return getOptions(descriptor, true);
}
示例13: create
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
/**
* Creates an enum value backed up by the given proto.
*/
public static EnumValue create(EnumType parent, EnumValueDescriptorProto proto, String path) {
return new EnumValue(parent, proto, path);
}
示例14: EnumValue
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
private EnumValue(EnumType parent, EnumValueDescriptorProto proto, String path) {
super(parent, proto.getName(), path);
this.proto = proto;
}
示例15: getProto
import com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto; //导入依赖的package包/类
/**
* Returns the underlying proto representation.
*/
public EnumValueDescriptorProto getProto() {
return proto;
}