public enum MessagingChannel extends Enum<MessagingChannel>
| Enum Constant and Description |
|---|
instagram
Conversation happened on Instagram Direct.
|
messenger
Conversation happened on Messenger.
|
whatsapp
Conversation happened on WhatsApp.
|
| Modifier and Type | Method and Description |
|---|---|
static MessagingChannel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessagingChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessagingChannel instagram
public static final MessagingChannel messenger
public static final MessagingChannel whatsapp
public static MessagingChannel[] values()
for (MessagingChannel c : MessagingChannel.values()) System.out.println(c);
public static MessagingChannel 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 nullCopyright © 2024. All rights reserved.