Package com.streamlayer.interactive.tags
Interface SearchRequest.SearchRequestDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
SearchRequest.SearchRequestData,SearchRequest.SearchRequestData.Builder
- Enclosing class:
- SearchRequest
public static interface SearchRequest.SearchRequestDataOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetTagIds(int index)user selected tagscom.google.protobuf.ByteStringgetTagIdsBytes(int index)user selected tagsintgetTagIdsCount()user selected tagsjava.util.List<java.lang.String>getTagIdsList()user selected tagsjava.lang.StringgetTagMatch()partial tag seachingcom.google.protobuf.ByteStringgetTagMatchBytes()partial tag seachingQuestionTypegetTypes(int index)allowed tags for question typesintgetTypesCount()allowed tags for question typesjava.util.List<QuestionType>getTypesList()allowed tags for question typesintgetTypesValue(int index)allowed tags for question typesjava.util.List<java.lang.Integer>getTypesValueList()allowed tags for question types
-
-
-
Method Detail
-
getTypesList
java.util.List<QuestionType> getTypesList()
allowed tags for question types
repeated .streamlayer.interactive.QuestionType types = 1 [json_name = "types"];- Returns:
- A list containing the types.
-
getTypesCount
int getTypesCount()
allowed tags for question types
repeated .streamlayer.interactive.QuestionType types = 1 [json_name = "types"];- Returns:
- The count of types.
-
getTypes
QuestionType getTypes(int index)
allowed tags for question types
repeated .streamlayer.interactive.QuestionType types = 1 [json_name = "types"];- Parameters:
index- The index of the element to return.- Returns:
- The types at the given index.
-
getTypesValueList
java.util.List<java.lang.Integer> getTypesValueList()
allowed tags for question types
repeated .streamlayer.interactive.QuestionType types = 1 [json_name = "types"];- Returns:
- A list containing the enum numeric values on the wire for types.
-
getTypesValue
int getTypesValue(int index)
allowed tags for question types
repeated .streamlayer.interactive.QuestionType types = 1 [json_name = "types"];- Parameters:
index- The index of the value to return.- Returns:
- The enum numeric value on the wire of types at the given index.
-
getTagIdsList
java.util.List<java.lang.String> getTagIdsList()
user selected tags
repeated string tag_ids = 2 [json_name = "tagIds"];- Returns:
- A list containing the tagIds.
-
getTagIdsCount
int getTagIdsCount()
user selected tags
repeated string tag_ids = 2 [json_name = "tagIds"];- Returns:
- The count of tagIds.
-
getTagIds
java.lang.String getTagIds(int index)
user selected tags
repeated string tag_ids = 2 [json_name = "tagIds"];- Parameters:
index- The index of the element to return.- Returns:
- The tagIds at the given index.
-
getTagIdsBytes
com.google.protobuf.ByteString getTagIdsBytes(int index)
user selected tags
repeated string tag_ids = 2 [json_name = "tagIds"];- Parameters:
index- The index of the element to return.- Returns:
- The tagIds at the given index.
-
getTagMatch
java.lang.String getTagMatch()
partial tag seaching
string tag_match = 3 [json_name = "tagMatch"];- Returns:
- The tagMatch.
-
getTagMatchBytes
com.google.protobuf.ByteString getTagMatchBytes()
partial tag seaching
string tag_match = 3 [json_name = "tagMatch"];- Returns:
- The bytes for tagMatch.
-
-