当前位置: 首页>>代码示例>>Java>>正文


Java FieldDescriptor.isMapField方法代码示例

本文整理汇总了Java中com.google.protobuf.Descriptors.FieldDescriptor.isMapField方法的典型用法代码示例。如果您正苦于以下问题:Java FieldDescriptor.isMapField方法的具体用法?Java FieldDescriptor.isMapField怎么用?Java FieldDescriptor.isMapField使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.protobuf.Descriptors.FieldDescriptor的用法示例。


在下文中一共展示了FieldDescriptor.isMapField方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ProtoFieldInfo

import com.google.protobuf.Descriptors.FieldDescriptor; //导入方法依赖的package包/类
ProtoFieldInfo(FieldDescriptor field, Message containingPrototype) {
  this.field = checkNotNull(field, "field");
  this.containingPrototype = checkNotNull(containingPrototype, "containingPrototype");
  builderClass = containingPrototype.newBuilderForType().getClass();

  camelCaseName = underscoresToUpperCamelCase(field.getName());

  if (field.isMapField()) {
    Descriptor mapType = field.getMessageType();
    mapKeyField = new ProtoFieldInfo(mapType.findFieldByName("key"), containingPrototype);
    mapValueField = new ProtoFieldInfo(mapType.findFieldByName("value"), containingPrototype);
  } else {
    mapKeyField = null;
    mapValueField = null;
  }
}
 
开发者ID:curioswitch,项目名称:curiostack,代码行数:17,代码来源:ProtoFieldInfo.java

示例2: printField

import com.google.protobuf.Descriptors.FieldDescriptor; //导入方法依赖的package包/类
private void printField(FieldDescriptor field, Object value) throws IOException {
  if (preservingProtoFieldNames) {
    generator.print("\"" + field.getName() + "\":" + blankOrSpace);
  } else {
    generator.print("\"" + field.getJsonName() + "\":" + blankOrSpace);
  }
  if (field.isMapField()) {
    printMapFieldValue(field, value);
  } else if (field.isRepeated()) {
    printRepeatedFieldValue(field, value);
  } else {
    printSingleFieldValue(field, value);
  }
}
 
开发者ID:SeldonIO,项目名称:seldon-core,代码行数:15,代码来源:JsonFormat.java

示例3: mergeField

import com.google.protobuf.Descriptors.FieldDescriptor; //导入方法依赖的package包/类
private void mergeField(FieldDescriptor field, JsonElement json, Message.Builder builder)
    throws InvalidProtocolBufferException {
  if (field.isRepeated()) {
    if (builder.getRepeatedFieldCount(field) > 0) {
      throw new InvalidProtocolBufferException(
          "Field " + field.getFullName() + " has already been set.");
    }
  } else {
    if (builder.hasField(field)) {
      throw new InvalidProtocolBufferException(
          "Field " + field.getFullName() + " has already been set.");
    }
    if (field.getContainingOneof() != null
        && builder.getOneofFieldDescriptor(field.getContainingOneof()) != null) {
      FieldDescriptor other = builder.getOneofFieldDescriptor(field.getContainingOneof());
      throw new InvalidProtocolBufferException(
          "Cannot set field "
              + field.getFullName()
              + " because another field "
              + other.getFullName()
              + " belonging to the same oneof has already been set ");
    }
  }
  if (field.isRepeated() && json instanceof JsonNull) {
    // We allow "null" as value for all field types and treat it as if the
    // field is not present.
    return;
  }
  if (field.isMapField()) {
    mergeMapField(field, json, builder);
  } else if (field.isRepeated()) {
    mergeRepeatedField(field, json, builder);
  } else {
    Object value = parseFieldValue(field, json, builder);
    if (value != null) {
      builder.setField(field, value);
    }
  }
}
 
开发者ID:SeldonIO,项目名称:seldon-core,代码行数:40,代码来源:JsonFormat.java


注:本文中的com.google.protobuf.Descriptors.FieldDescriptor.isMapField方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。