Interface RpcTransformerOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RpcTransformer,RpcTransformer.Builder
public interface RpcTransformerOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsParameters(String key)Specified as a (name, type) tupleStringgetMethodName()string methodName = 1;com.google.protobuf.ByteStringgetMethodNameBytes()string methodName = 1;Map<String,String>getParameters()Deprecated.intgetParametersCount()Specified as a (name, type) tupleMap<String,String>getParametersMap()Specified as a (name, type) tupleStringgetParametersOrDefault(String key, String defaultValue)Specified as a (name, type) tupleStringgetParametersOrThrow(String key)Specified as a (name, type) tupleStringgetReturnType()string returnType = 3;com.google.protobuf.ByteStringgetReturnTypeBytes()string returnType = 3;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMethodName
String getMethodName()
string methodName = 1;- Returns:
- The methodName.
-
getMethodNameBytes
com.google.protobuf.ByteString getMethodNameBytes()
string methodName = 1;- Returns:
- The bytes for methodName.
-
getParametersCount
int getParametersCount()
Specified as a (name, type) tuple
map<string, string> parameters = 2;
-
containsParameters
boolean containsParameters(String key)
Specified as a (name, type) tuple
map<string, string> parameters = 2;
-
getParameters
@Deprecated Map<String,String> getParameters()
Deprecated.UsegetParametersMap()instead.
-
getParametersMap
Map<String,String> getParametersMap()
Specified as a (name, type) tuple
map<string, string> parameters = 2;
-
getParametersOrDefault
String getParametersOrDefault(String key, String defaultValue)
Specified as a (name, type) tuple
map<string, string> parameters = 2;
-
getParametersOrThrow
String getParametersOrThrow(String key)
Specified as a (name, type) tuple
map<string, string> parameters = 2;
-
getReturnType
String getReturnType()
string returnType = 3;- Returns:
- The returnType.
-
getReturnTypeBytes
com.google.protobuf.ByteString getReturnTypeBytes()
string returnType = 3;- Returns:
- The bytes for returnType.
-
-