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