Interface KeywordAndUrlSeedOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
KeywordAndUrlSeed,KeywordAndUrlSeed.Builder
public interface KeywordAndUrlSeedOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetKeywords(int index) Requires at least one keyword and no more than 20 keywords.com.google.protobuf.ByteStringgetKeywordsBytes(int index) Requires at least one keyword and no more than 20 keywords.intRequires at least one keyword and no more than 20 keywords.Requires at least one keyword and no more than 20 keywords.getUrl()The URL to crawl in order to generate keyword ideas.com.google.protobuf.ByteStringThe URL to crawl in order to generate keyword ideas.booleanhasUrl()The URL to crawl in order to generate keyword ideas.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasUrl
boolean hasUrl()The URL to crawl in order to generate keyword ideas.
optional string url = 3;- Returns:
- Whether the url field is set.
-
getUrl
String getUrl()The URL to crawl in order to generate keyword ideas.
optional string url = 3;- Returns:
- The url.
-
getUrlBytes
com.google.protobuf.ByteString getUrlBytes()The URL to crawl in order to generate keyword ideas.
optional string url = 3;- Returns:
- The bytes for url.
-
getKeywordsList
Requires at least one keyword and no more than 20 keywords.
repeated string keywords = 4;- Returns:
- A list containing the keywords.
-
getKeywordsCount
int getKeywordsCount()Requires at least one keyword and no more than 20 keywords.
repeated string keywords = 4;- Returns:
- The count of keywords.
-
getKeywords
Requires at least one keyword and no more than 20 keywords.
repeated string keywords = 4;- Parameters:
index- The index of the element to return.- Returns:
- The keywords at the given index.
-
getKeywordsBytes
com.google.protobuf.ByteString getKeywordsBytes(int index) Requires at least one keyword and no more than 20 keywords.
repeated string keywords = 4;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the keywords at the given index.
-