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