public enum AttributeType extends Enum<AttributeType>
Java class for AttributeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AttributeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="CATEGORY_PRODUCTS_AND_SERVICES"/>
<enumeration value="COMPETITION"/>
<enumeration value="EXTRACTED_FROM_WEBPAGE"/>
<enumeration value="IDEA_TYPE"/>
<enumeration value="KEYWORD_TEXT"/>
<enumeration value="SEARCH_VOLUME"/>
<enumeration value="AVERAGE_CPC"/>
<enumeration value="TARGETED_MONTHLY_SEARCHES"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AVERAGE_CPC
Represents the average cost per click historically paid for the keyword.
|
CATEGORY_PRODUCTS_AND_SERVICES
Represents a category ID in the "Products and Services" taxonomy.
|
COMPETITION
Represents the relative amount of competition associated with the given keyword idea,
relative to other keywords.
|
EXTRACTED_FROM_WEBPAGE
Represents the webpage from which this keyword idea was extracted (if applicable.)
|
IDEA_TYPE
Represents the type of the given idea.
|
KEYWORD_TEXT
Represents the keyword text for the given keyword idea.
|
SEARCH_VOLUME
Represents either the (approximate) number of searches for the given keyword idea on google.com
or google.com and partners, depending on the user's targeting.
|
TARGETED_MONTHLY_SEARCHES
Represents the (approximated) number of searches on this keyword idea (as available for the
past twelve months), targeted to the specified geographies.
|
UNKNOWN
Value substituted in when the actual value is not available in the Web API
version being used.
|
| Modifier and Type | Method and Description |
|---|---|
static AttributeType |
fromValue(String v) |
String |
value() |
static AttributeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeType UNKNOWN
This element is not supported directly by any IdeaType.
public static final AttributeType CATEGORY_PRODUCTS_AND_SERVICES
Resulting attribute is IntegerSetAttribute.
This element is supported by following IdeaTypes: KEYWORD.
public static final AttributeType COMPETITION
Resulting attribute is DoubleAttribute.
This element is supported by following IdeaTypes: KEYWORD.
public static final AttributeType EXTRACTED_FROM_WEBPAGE
Resulting attribute is WebpageDescriptorAttribute.
This element is supported by following IdeaTypes: KEYWORD.
public static final AttributeType IDEA_TYPE
Resulting attribute is IdeaTypeAttribute.
This element is supported by following IdeaTypes: KEYWORD.
public static final AttributeType KEYWORD_TEXT
Resulting attribute is StringAttribute.
This element is supported by following IdeaTypes: KEYWORD.
public static final AttributeType SEARCH_VOLUME
Resulting attribute is LongAttribute.
This element is supported by following IdeaTypes: KEYWORD.
public static final AttributeType AVERAGE_CPC
Resulting attribute is MoneyAttribute.
This element is supported by following IdeaTypes: KEYWORD.
public static final AttributeType TARGETED_MONTHLY_SEARCHES
Resulting attribute is MonthlySearchVolumeAttribute.
This element is supported by following IdeaTypes: KEYWORD.
public static AttributeType[] values()
for (AttributeType c : AttributeType.values()) System.out.println(c);
public static AttributeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static AttributeType fromValue(String v)
Copyright © 2023. All rights reserved.