public enum BidSource extends Enum<BidSource>
Java class for BidSource.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BidSource">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ADGROUP"/>
<enumeration value="CRITERION"/>
<enumeration value="ADGROUP_BIDDING_STRATEGY"/>
<enumeration value="CAMPAIGN_BIDDING_STRATEGY"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADGROUP
Effective Bid is Adgroup level bid
|
ADGROUP_BIDDING_STRATEGY
Effective Bid is inherited from Adgroup Bidding Strategy
|
CAMPAIGN_BIDDING_STRATEGY
Effective Bid is inherited from Campaign Bidding Strategy
|
CRITERION
Effective Bid is Keyword level bid
|
| Modifier and Type | Method and Description |
|---|---|
static BidSource |
fromValue(String v) |
String |
value() |
static BidSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BidSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BidSource ADGROUP
public static final BidSource CRITERION
public static final BidSource ADGROUP_BIDDING_STRATEGY
public static final BidSource CAMPAIGN_BIDDING_STRATEGY
public static BidSource[] values()
for (BidSource c : BidSource.values()) System.out.println(c);
public static BidSource 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()
Copyright © 2023. All rights reserved.