Enum ServiceCategory
- java.lang.Object
-
- java.lang.Enum<ServiceCategory>
-
- co.ecg.alpaca.toolkit.generated.enums.ServiceCategory
-
- All Implemented Interfaces:
Serializable
,Comparable<ServiceCategory>
public enum ServiceCategory extends Enum<ServiceCategory>
List of supported Service Categories that have configurable default attributes entries. The following elements are ignored in AS data mode: OMA Presence The following elements are ignored in XS data mode: ChargeNumber Integrated IMP Voice Portal Calling- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServiceCategory
get(String value)
static ServiceCategory[]
getArray(String[] values)
String
toString()
String
value()
static ServiceCategory
valueOf(String name)
Returns the enum constant of this type with the specified name.static ServiceCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CALLTRANSFER
public static final ServiceCategory CALLTRANSFER
-
CALLWAITING
public static final ServiceCategory CALLWAITING
-
CALLINGNAMERETRIEVAL
public static final ServiceCategory CALLINGNAMERETRIEVAL
-
CHARGENUMBER
public static final ServiceCategory CHARGENUMBER
-
EXTERNALCALLINGLINEIDDELIVERY
public static final ServiceCategory EXTERNALCALLINGLINEIDDELIVERY
-
GROUPNIGHTFORWARDING
public static final ServiceCategory GROUPNIGHTFORWARDING
-
INTEGRATEDIMP
public static final ServiceCategory INTEGRATEDIMP
-
INTERCEPTGROUP
public static final ServiceCategory INTERCEPTGROUP
-
INTERNALCALLINGLINEIDDELIVERY
public static final ServiceCategory INTERNALCALLINGLINEIDDELIVERY
-
MUSICONHOLD
public static final ServiceCategory MUSICONHOLD
-
OMAPRESENCE
public static final ServiceCategory OMAPRESENCE
-
PREPAID
public static final ServiceCategory PREPAID
-
SHAREDCALLAPPEARANCE
public static final ServiceCategory SHAREDCALLAPPEARANCE
-
THIRDPARTYVOICEMAILSUPPORT
public static final ServiceCategory THIRDPARTYVOICEMAILSUPPORT
-
USER
public static final ServiceCategory USER
-
VOICEPORTALCALLING
public static final ServiceCategory VOICEPORTALCALLING
-
-
Method Detail
-
values
public static ServiceCategory[] 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 (ServiceCategory c : ServiceCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceCategory 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<ServiceCategory>
-
get
public static ServiceCategory get(String value)
-
getArray
public static ServiceCategory[] getArray(String[] values)
-
-