Package com.google.protobuf
Class TypeRegistry
- java.lang.Object
-
- com.google.protobuf.TypeRegistry
-
public class TypeRegistry extends java.lang.ObjectA TypeRegistry is used to resolve Any messages. You must provide a TypeRegistry containing all message types used in Any message fields.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTypeRegistry.BuilderA Builder is used to buildTypeRegistry.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Descriptors.Descriptorfind(java.lang.String name)Find a type by its full name.Descriptors.DescriptorgetDescriptorForTypeUrl(java.lang.String typeUrl)Find a type by its typeUrl.static TypeRegistrygetEmptyTypeRegistry()static TypeRegistry.BuildernewBuilder()
-
-
-
Method Detail
-
getEmptyTypeRegistry
public static TypeRegistry getEmptyTypeRegistry()
-
newBuilder
public static TypeRegistry.Builder newBuilder()
-
find
public Descriptors.Descriptor find(java.lang.String name)
Find a type by its full name. Returns null if it cannot be found in thisTypeRegistry.
-
getDescriptorForTypeUrl
public final Descriptors.Descriptor getDescriptorForTypeUrl(java.lang.String typeUrl) throws InvalidProtocolBufferException
Find a type by its typeUrl. Returns null if it cannot be found in thisTypeRegistry.- Throws:
InvalidProtocolBufferException
-
-