Enum SIPDiversionReason
- java.lang.Object
-
- java.lang.Enum<SIPDiversionReason>
-
- co.ecg.alpaca.toolkit.generated.enums.SIPDiversionReason
-
- All Implemented Interfaces:
Serializable
,Comparable<SIPDiversionReason>
public enum SIPDiversionReason extends Enum<SIPDiversionReason>
Sip Diversion Reasons.- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AWAY
BWEXPLICITID
BWIMPLICITID
CALLCENTER
DEFLECTION
DONOTDISTURB
FOLLOWME
HUNTGROUP
NOANSWER
OUTOFSERVICE
ROUTEPOINT
TIMEOFDAY
TRANSFER
UNAVAILABLE
UNCONDITIONAL
UNKNOWN
USERBUSY
VOICEMAIL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SIPDiversionReason
get(String value)
static SIPDiversionReason[]
getArray(String[] values)
String
toString()
String
value()
static SIPDiversionReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static SIPDiversionReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final SIPDiversionReason UNKNOWN
-
USERBUSY
public static final SIPDiversionReason USERBUSY
-
NOANSWER
public static final SIPDiversionReason NOANSWER
-
UNAVAILABLE
public static final SIPDiversionReason UNAVAILABLE
-
UNCONDITIONAL
public static final SIPDiversionReason UNCONDITIONAL
-
DEFLECTION
public static final SIPDiversionReason DEFLECTION
-
TIMEOFDAY
public static final SIPDiversionReason TIMEOFDAY
-
DONOTDISTURB
public static final SIPDiversionReason DONOTDISTURB
-
FOLLOWME
public static final SIPDiversionReason FOLLOWME
-
OUTOFSERVICE
public static final SIPDiversionReason OUTOFSERVICE
-
AWAY
public static final SIPDiversionReason AWAY
-
TRANSFER
public static final SIPDiversionReason TRANSFER
-
VOICEMAIL
public static final SIPDiversionReason VOICEMAIL
-
HUNTGROUP
public static final SIPDiversionReason HUNTGROUP
-
CALLCENTER
public static final SIPDiversionReason CALLCENTER
-
ROUTEPOINT
public static final SIPDiversionReason ROUTEPOINT
-
BWIMPLICITID
public static final SIPDiversionReason BWIMPLICITID
-
BWEXPLICITID
public static final SIPDiversionReason BWEXPLICITID
-
-
Method Detail
-
values
public static SIPDiversionReason[] 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 (SIPDiversionReason c : SIPDiversionReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SIPDiversionReason 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<SIPDiversionReason>
-
get
public static SIPDiversionReason get(String value)
-
getArray
public static SIPDiversionReason[] getArray(String[] values)
-
-