public enum MobileApplicationPlatform extends Enum<MobileApplicationPlatform>
Java class for MobileApplicationPlatform.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MobileApplicationPlatform">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="ANDROID"/>
<enumeration value="IOS"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ANDROID |
IOS |
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static MobileApplicationPlatform |
fromValue(String v) |
String |
value() |
static MobileApplicationPlatform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MobileApplicationPlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MobileApplicationPlatform UNKNOWN
public static final MobileApplicationPlatform ANDROID
public static final MobileApplicationPlatform IOS
public static MobileApplicationPlatform[] values()
for (MobileApplicationPlatform c : MobileApplicationPlatform.values()) System.out.println(c);
public static MobileApplicationPlatform 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 MobileApplicationPlatform fromValue(String v)
Copyright © 2018. All Rights Reserved.