Package zendesk.android.messaging
Enum UrlSource
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
UrlSource.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description TEXT
The URL was part of a text message.
CAROUSEL
The URL was an action of a carousel item.
FILE
The URL of a file in the conversation.
IMAGE
The URL of an image in the conversation.
LINK_MESSAGE_ACTION
The URL was part of a link action in the conversation.
WEBVIEW_MESSAGE_ACTION
The URL was part of a webview action in the conversation.
-
Method Summary
Modifier and Type Method Description final UrlSource
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<UrlSource>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<UrlSource>
getEntries()
In which UI element a URL was displayed to the user when it was clicked. -
-
Method Detail
-
valueOf
final UrlSource valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<UrlSource> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<UrlSource> getEntries()
In which UI element a URL was displayed to the user when it was clicked.
-
-
-
-