31 package com.google.protobuf;
33 final class MapFieldSchemas {
34 private static final MapFieldSchema FULL_SCHEMA = loadSchemaForFullRuntime();
35 private static final MapFieldSchema LITE_SCHEMA =
new MapFieldSchemaLite();
37 static MapFieldSchema full() {
41 static MapFieldSchema lite() {
45 private static MapFieldSchema loadSchemaForFullRuntime() {
47 Class<?> clazz = Class.forName(
"com.google.protobuf.MapFieldSchemaFull");
48 return (MapFieldSchema) clazz.getDeclaredConstructor().newInstance();
49 }
catch (Exception e) {