Package com.google.gapic.metadata
Interface GapicMetadata.MethodListOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GapicMetadata.MethodList,GapicMetadata.MethodList.Builder
- Enclosing class:
- GapicMetadata
public static interface GapicMetadata.MethodListOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetMethods(int index)List of methods for a specific proto-service client in the GAPIC.com.google.protobuf.ByteStringgetMethodsBytes(int index)List of methods for a specific proto-service client in the GAPIC.intgetMethodsCount()List of methods for a specific proto-service client in the GAPIC.List<String>getMethodsList()List of methods for a specific proto-service client in the GAPIC.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMethodsList
List<String> getMethodsList()
List of methods for a specific proto-service client in the GAPIC. These names should be formatted as they appear in the source code.
repeated string methods = 1;- Returns:
- A list containing the methods.
-
getMethodsCount
int getMethodsCount()
List of methods for a specific proto-service client in the GAPIC. These names should be formatted as they appear in the source code.
repeated string methods = 1;- Returns:
- The count of methods.
-
getMethods
String getMethods(int index)
List of methods for a specific proto-service client in the GAPIC. These names should be formatted as they appear in the source code.
repeated string methods = 1;- Parameters:
index- The index of the element to return.- Returns:
- The methods at the given index.
-
getMethodsBytes
com.google.protobuf.ByteString getMethodsBytes(int index)
List of methods for a specific proto-service client in the GAPIC. These names should be formatted as they appear in the source code.
repeated string methods = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the methods at the given index.
-
-