Interface LookupResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LookupResponse,LookupResponse.Builder
public interface LookupResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ValuegetContext()The local context applicable for the response.com.google.protobuf.ValueOrBuildergetContextOrBuilder()The local context applicable for the response.com.google.protobuf.ListValuegetItemListElement()The item list of search results.com.google.protobuf.ListValueOrBuildergetItemListElementOrBuilder()The item list of search results.com.google.protobuf.ValuegetType()The schema type of top-level JSON-LD object, e.g.com.google.protobuf.ValueOrBuildergetTypeOrBuilder()The schema type of top-level JSON-LD object, e.g.booleanhasContext()The local context applicable for the response.booleanhasItemListElement()The item list of search results.booleanhasType()The schema type of top-level JSON-LD object, e.g.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasContext
boolean hasContext()
The local context applicable for the response. See more details at http://www.w3.org/TR/json-ld/#context-definitions.
.google.protobuf.Value context = 1;- Returns:
- Whether the context field is set.
-
getContext
com.google.protobuf.Value getContext()
The local context applicable for the response. See more details at http://www.w3.org/TR/json-ld/#context-definitions.
.google.protobuf.Value context = 1;- Returns:
- The context.
-
getContextOrBuilder
com.google.protobuf.ValueOrBuilder getContextOrBuilder()
The local context applicable for the response. See more details at http://www.w3.org/TR/json-ld/#context-definitions.
.google.protobuf.Value context = 1;
-
hasType
boolean hasType()
The schema type of top-level JSON-LD object, e.g. ItemList.
.google.protobuf.Value type = 2;- Returns:
- Whether the type field is set.
-
getType
com.google.protobuf.Value getType()
The schema type of top-level JSON-LD object, e.g. ItemList.
.google.protobuf.Value type = 2;- Returns:
- The type.
-
getTypeOrBuilder
com.google.protobuf.ValueOrBuilder getTypeOrBuilder()
The schema type of top-level JSON-LD object, e.g. ItemList.
.google.protobuf.Value type = 2;
-
hasItemListElement
boolean hasItemListElement()
The item list of search results.
.google.protobuf.ListValue item_list_element = 3;- Returns:
- Whether the itemListElement field is set.
-
getItemListElement
com.google.protobuf.ListValue getItemListElement()
The item list of search results.
.google.protobuf.ListValue item_list_element = 3;- Returns:
- The itemListElement.
-
getItemListElementOrBuilder
com.google.protobuf.ListValueOrBuilder getItemListElementOrBuilder()
The item list of search results.
.google.protobuf.ListValue item_list_element = 3;
-
-