Interface LookupRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LookupRequest,LookupRequest.Builder
public interface LookupRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetIds(int index)Required.com.google.protobuf.ByteStringgetIdsBytes(int index)Required.intgetIdsCount()Required.List<String>getIdsList()Required.StringgetLanguages(int index)The list of language codes (defined in ISO 693) to run the query with, e.g.com.google.protobuf.ByteStringgetLanguagesBytes(int index)The list of language codes (defined in ISO 693) to run the query with, e.g.intgetLanguagesCount()The list of language codes (defined in ISO 693) to run the query with, e.g.List<String>getLanguagesList()The list of language codes (defined in ISO 693) to run the query with, e.g.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The name of the Entity's parent resource. Format: `projects/{project}/locations/{location}`string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The name of the Entity's parent resource. Format: `projects/{project}/locations/{location}`string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
getIdsList
List<String> getIdsList()
Required. The list of entity ids to be used for lookup.
repeated string ids = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- A list containing the ids.
-
getIdsCount
int getIdsCount()
Required. The list of entity ids to be used for lookup.
repeated string ids = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The count of ids.
-
getIds
String getIds(int index)
Required. The list of entity ids to be used for lookup.
repeated string ids = 2 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the element to return.- Returns:
- The ids at the given index.
-
getIdsBytes
com.google.protobuf.ByteString getIdsBytes(int index)
Required. The list of entity ids to be used for lookup.
repeated string ids = 2 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the ids at the given index.
-
getLanguagesList
List<String> getLanguagesList()
The list of language codes (defined in ISO 693) to run the query with, e.g. 'en'.
repeated string languages = 3;- Returns:
- A list containing the languages.
-
getLanguagesCount
int getLanguagesCount()
The list of language codes (defined in ISO 693) to run the query with, e.g. 'en'.
repeated string languages = 3;- Returns:
- The count of languages.
-
getLanguages
String getLanguages(int index)
The list of language codes (defined in ISO 693) to run the query with, e.g. 'en'.
repeated string languages = 3;- Parameters:
index- The index of the element to return.- Returns:
- The languages at the given index.
-
getLanguagesBytes
com.google.protobuf.ByteString getLanguagesBytes(int index)
The list of language codes (defined in ISO 693) to run the query with, e.g. 'en'.
repeated string languages = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the languages at the given index.
-
-