本文整理汇总了Java中com.google.protobuf.AbstractParser类的典型用法代码示例。如果您正苦于以下问题:Java AbstractParser类的具体用法?Java AbstractParser怎么用?Java AbstractParser使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AbstractParser类属于com.google.protobuf包,在下文中一共展示了AbstractParser类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Metadata
import com.google.protobuf.AbstractParser; //导入依赖的package包/类
/**
* Instantiates a new metadata.
*
* @param descriptor the descriptor
* @param defaultInstance the default instance
* @param keyType the key type
* @param valueType the value type
*/
public Metadata(Descriptor descriptor, MapEntry<K, V> defaultInstance, WireFormat.FieldType keyType,
WireFormat.FieldType valueType) {
super(keyType, defaultInstance.key, valueType, defaultInstance.value);
this.descriptor = descriptor;
this.parser = new AbstractParser<MapEntry<K, V>>() {
@Override
public MapEntry<K, V> parsePartialFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
throws InvalidProtocolBufferException {
return new MapEntry<K, V>(Metadata.this, input, extensionRegistry);
}
};
}