Enum ProductFeed.FeedSchedule
- java.lang.Object
-
- java.lang.Enum<ProductFeed.FeedSchedule>
-
- com.adobe.cq.targetrecommendations.api.model.ProductFeed.FeedSchedule
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ProductFeed.FeedSchedule>
- Enclosing interface:
- ProductFeed
public static enum ProductFeed.FeedSchedule extends java.lang.Enum<ProductFeed.FeedSchedule>
Feed schedule enumeration. Please note that bi_weekly refers to "once every two weeks"
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProductFeed.FeedSchedule
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ProductFeed.FeedSchedule[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAILY
public static final ProductFeed.FeedSchedule DAILY
-
WEEKLY
public static final ProductFeed.FeedSchedule WEEKLY
-
BI_WEEKLY
public static final ProductFeed.FeedSchedule BI_WEEKLY
-
NEVER
public static final ProductFeed.FeedSchedule NEVER
-
-
Method Detail
-
values
public static ProductFeed.FeedSchedule[] 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 (ProductFeed.FeedSchedule c : ProductFeed.FeedSchedule.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProductFeed.FeedSchedule valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-