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