Enum VoiceMessagingNumberOfRings
- java.lang.Object
-
- java.lang.Enum<VoiceMessagingNumberOfRings>
-
- co.ecg.alpaca.toolkit.generated.enums.VoiceMessagingNumberOfRings
-
- All Implemented Interfaces:
Serializable
,Comparable<VoiceMessagingNumberOfRings>
public enum VoiceMessagingNumberOfRings extends Enum<VoiceMessagingNumberOfRings>
The number of rings before greeting.- Author:
- AlpacaGenerator
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VoiceMessagingNumberOfRings
get(String value)
static VoiceMessagingNumberOfRings[]
getArray(String[] values)
String
toString()
String
value()
static VoiceMessagingNumberOfRings
valueOf(String name)
Returns the enum constant of this type with the specified name.static VoiceMessagingNumberOfRings[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
S0
public static final VoiceMessagingNumberOfRings S0
-
S2
public static final VoiceMessagingNumberOfRings S2
-
S3
public static final VoiceMessagingNumberOfRings S3
-
S4
public static final VoiceMessagingNumberOfRings S4
-
S5
public static final VoiceMessagingNumberOfRings S5
-
S6
public static final VoiceMessagingNumberOfRings S6
-
S7
public static final VoiceMessagingNumberOfRings S7
-
S8
public static final VoiceMessagingNumberOfRings S8
-
S9
public static final VoiceMessagingNumberOfRings S9
-
S10
public static final VoiceMessagingNumberOfRings S10
-
S11
public static final VoiceMessagingNumberOfRings S11
-
S12
public static final VoiceMessagingNumberOfRings S12
-
S13
public static final VoiceMessagingNumberOfRings S13
-
S14
public static final VoiceMessagingNumberOfRings S14
-
S15
public static final VoiceMessagingNumberOfRings S15
-
S16
public static final VoiceMessagingNumberOfRings S16
-
S17
public static final VoiceMessagingNumberOfRings S17
-
S18
public static final VoiceMessagingNumberOfRings S18
-
S19
public static final VoiceMessagingNumberOfRings S19
-
S20
public static final VoiceMessagingNumberOfRings S20
-
-
Method Detail
-
values
public static VoiceMessagingNumberOfRings[] 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 (VoiceMessagingNumberOfRings c : VoiceMessagingNumberOfRings.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VoiceMessagingNumberOfRings 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<VoiceMessagingNumberOfRings>
-
get
public static VoiceMessagingNumberOfRings get(String value)
-
getArray
public static VoiceMessagingNumberOfRings[] getArray(String[] values)
-
-