public enum MobileApplicationVendor extends Enum<MobileApplicationVendor>
Java class for MobileApplicationVendor.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MobileApplicationVendor">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="VENDOR_UNKNOWN"/>
<enumeration value="VENDOR_APPLE_APP_STORE"/>
<enumeration value="VENDOR_GOOGLE_MARKET"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
VENDOR_APPLE_APP_STORE
Mobile application vendor for apple app store.
|
VENDOR_GOOGLE_MARKET
Mobile application vendor for google market.
|
VENDOR_UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static MobileApplicationVendor |
fromValue(String v) |
String |
value() |
static MobileApplicationVendor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MobileApplicationVendor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MobileApplicationVendor VENDOR_UNKNOWN
public static final MobileApplicationVendor VENDOR_APPLE_APP_STORE
public static final MobileApplicationVendor VENDOR_GOOGLE_MARKET
public static MobileApplicationVendor[] values()
for (MobileApplicationVendor c : MobileApplicationVendor.values()) System.out.println(c);
public static MobileApplicationVendor 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 nullpublic String value()
public static MobileApplicationVendor fromValue(String v)
Copyright © 2023. All rights reserved.