Enum VoiceMessagingBrandingSelection
- java.lang.Object
-
- java.lang.Enum<VoiceMessagingBrandingSelection>
-
- co.ecg.alpaca.toolkit.generated.enums.VoiceMessagingBrandingSelection
-
- All Implemented Interfaces:
Serializable
,Comparable<VoiceMessagingBrandingSelection>
public enum VoiceMessagingBrandingSelection extends Enum<VoiceMessagingBrandingSelection>
Branding Selection.- Author:
- AlpacaGenerator
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VoiceMessagingBrandingSelection
get(String value)
static VoiceMessagingBrandingSelection[]
getArray(String[] values)
String
toString()
String
value()
static VoiceMessagingBrandingSelection
valueOf(String name)
Returns the enum constant of this type with the specified name.static VoiceMessagingBrandingSelection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final VoiceMessagingBrandingSelection DEFAULT
-
BRANDED
public static final VoiceMessagingBrandingSelection BRANDED
-
-
Method Detail
-
values
public static VoiceMessagingBrandingSelection[] 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 (VoiceMessagingBrandingSelection c : VoiceMessagingBrandingSelection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VoiceMessagingBrandingSelection valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
toString
public String toString()
- Overrides:
toString
in classEnum<VoiceMessagingBrandingSelection>
-
get
public static VoiceMessagingBrandingSelection get(String value)
-
getArray
public static VoiceMessagingBrandingSelection[] getArray(String[] values)
-
-