本文整理匯總了Java中com.google.protobuf.Descriptors.FieldDescriptor.getContainingOneof方法的典型用法代碼示例。如果您正苦於以下問題:Java FieldDescriptor.getContainingOneof方法的具體用法?Java FieldDescriptor.getContainingOneof怎麽用?Java FieldDescriptor.getContainingOneof使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.protobuf.Descriptors.FieldDescriptor
的用法示例。
在下文中一共展示了FieldDescriptor.getContainingOneof方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: 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);
}
}
}