Enum MessageValue.MessageValueEnum
- java.lang.Object
-
- java.lang.Enum<MessageValue.MessageValueEnum>
-
- com.stackone.stackone_client_java.models.components.MessageValue.MessageValueEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MessageValue.MessageValueEnum>
- Enclosing class:
- MessageValue
public static enum MessageValue.MessageValueEnum extends java.lang.Enum<MessageValue.MessageValueEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANDROID_PUSHAPP_PUSHCONTENT_BLOCKEMAILIN_APPIOS_PUSHOMNI_CHANNELPUSHSMSUNKNOWNUNMAPPED_VALUEWEB_PUSH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringvalue()static MessageValue.MessageValueEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MessageValue.MessageValueEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMAIL
public static final MessageValue.MessageValueEnum EMAIL
-
SMS
public static final MessageValue.MessageValueEnum SMS
-
PUSH
public static final MessageValue.MessageValueEnum PUSH
-
WEB_PUSH
public static final MessageValue.MessageValueEnum WEB_PUSH
-
IOS_PUSH
public static final MessageValue.MessageValueEnum IOS_PUSH
-
ANDROID_PUSH
public static final MessageValue.MessageValueEnum ANDROID_PUSH
-
APP_PUSH
public static final MessageValue.MessageValueEnum APP_PUSH
-
OMNI_CHANNEL
public static final MessageValue.MessageValueEnum OMNI_CHANNEL
-
CONTENT_BLOCK
public static final MessageValue.MessageValueEnum CONTENT_BLOCK
-
IN_APP
public static final MessageValue.MessageValueEnum IN_APP
-
UNKNOWN
public static final MessageValue.MessageValueEnum UNKNOWN
-
UNMAPPED_VALUE
public static final MessageValue.MessageValueEnum UNMAPPED_VALUE
-
-
Method Detail
-
values
public static MessageValue.MessageValueEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MessageValue.MessageValueEnum c : MessageValue.MessageValueEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageValue.MessageValueEnum valueOf(java.lang.String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
-