Package com.restfb.types.ads
Enum BidStrategyEnum
- java.lang.Object
-
- java.lang.Enum<BidStrategyEnum>
-
- com.restfb.types.ads.BidStrategyEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<BidStrategyEnum>
public enum BidStrategyEnum extends Enum<BidStrategyEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COST_CAP
LOWEST_COST_WITH_BID_CAP
LOWEST_COST_WITH_MIN_ROAS
LOWEST_COST_WITHOUT_CAP
TARGET_COST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BidStrategyEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static BidStrategyEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOWEST_COST_WITHOUT_CAP
public static final BidStrategyEnum LOWEST_COST_WITHOUT_CAP
-
LOWEST_COST_WITH_BID_CAP
public static final BidStrategyEnum LOWEST_COST_WITH_BID_CAP
-
TARGET_COST
public static final BidStrategyEnum TARGET_COST
-
COST_CAP
public static final BidStrategyEnum COST_CAP
-
LOWEST_COST_WITH_MIN_ROAS
public static final BidStrategyEnum LOWEST_COST_WITH_MIN_ROAS
-
-
Method Detail
-
values
public static BidStrategyEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BidStrategyEnum c : BidStrategyEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BidStrategyEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-