public static enum AppEventsLogger.ProductAvailability extends java.lang.Enum<AppEventsLogger.ProductAvailability>
| Enum Constant and Description |
|---|
AVALIABLE_FOR_ORDER
Ships in 1-2 weeks
|
DISCONTINUED
Discontinued
|
IN_STOCK
Item ships immediately
|
OUT_OF_STOCK
No plan to restock
|
PREORDER
Available in future
|
| Modifier and Type | Method and Description |
|---|---|
static AppEventsLogger.ProductAvailability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppEventsLogger.ProductAvailability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppEventsLogger.ProductAvailability IN_STOCK
public static final AppEventsLogger.ProductAvailability OUT_OF_STOCK
public static final AppEventsLogger.ProductAvailability PREORDER
public static final AppEventsLogger.ProductAvailability AVALIABLE_FOR_ORDER
public static final AppEventsLogger.ProductAvailability DISCONTINUED
public static AppEventsLogger.ProductAvailability[] values()
for (AppEventsLogger.ProductAvailability c : AppEventsLogger.ProductAvailability.values()) System.out.println(c);
public static AppEventsLogger.ProductAvailability valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null