public enum AppUrlOsType extends Enum<AppUrlOsType>
Java class for AppUrl.OsType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AppUrl.OsType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="OS_TYPE_IOS"/>
<enumeration value="OS_TYPE_ANDROID"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
OS_TYPE_ANDROID
The Android operating system.
|
OS_TYPE_IOS
The Apple IOS operating system,
|
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static AppUrlOsType |
fromValue(String v) |
String |
value() |
static AppUrlOsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppUrlOsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppUrlOsType OS_TYPE_IOS
public static final AppUrlOsType OS_TYPE_ANDROID
public static final AppUrlOsType UNKNOWN
public static AppUrlOsType[] values()
for (AppUrlOsType c : AppUrlOsType.values()) System.out.println(c);
public static AppUrlOsType 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 AppUrlOsType fromValue(String v)
Copyright © 2023. All rights reserved.