public static enum AppEventsLogger.ProductCondition extends java.lang.Enum<AppEventsLogger.ProductCondition>
| Enum Constant and Description |
|---|
NEW |
REFURBISHED |
USED |
| Modifier and Type | Method and Description |
|---|---|
static AppEventsLogger.ProductCondition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppEventsLogger.ProductCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppEventsLogger.ProductCondition NEW
public static final AppEventsLogger.ProductCondition REFURBISHED
public static final AppEventsLogger.ProductCondition USED
public static AppEventsLogger.ProductCondition[] values()
for (AppEventsLogger.ProductCondition c : AppEventsLogger.ProductCondition.values()) System.out.println(c);
public static AppEventsLogger.ProductCondition 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