Enum ServiceProviderVoicePortalScope
- java.lang.Object
-
- java.lang.Enum<ServiceProviderVoicePortalScope>
-
- co.ecg.alpaca.toolkit.generated.enums.ServiceProviderVoicePortalScope
-
- All Implemented Interfaces:
Serializable,Comparable<ServiceProviderVoicePortalScope>
public enum ServiceProviderVoicePortalScope extends Enum<ServiceProviderVoicePortalScope>
Voice Portal Scope. The Service Provider option allows users to log in to their voice portal using the voice portal of any group that is both hosted on the same application server and within the same service provider or enterprise. The Group option keeps groups completely independent. Users can only log in to their voice portal using the access number for their group.- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GROUPSERVICEPROVIDER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServiceProviderVoicePortalScopeget(String value)static ServiceProviderVoicePortalScope[]getArray(String[] values)StringtoString()Stringvalue()static ServiceProviderVoicePortalScopevalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceProviderVoicePortalScope[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GROUP
public static final ServiceProviderVoicePortalScope GROUP
-
SERVICEPROVIDER
public static final ServiceProviderVoicePortalScope SERVICEPROVIDER
-
-
Method Detail
-
values
public static ServiceProviderVoicePortalScope[] 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 (ServiceProviderVoicePortalScope c : ServiceProviderVoicePortalScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceProviderVoicePortalScope 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:
toStringin classEnum<ServiceProviderVoicePortalScope>
-
get
public static ServiceProviderVoicePortalScope get(String value)
-
getArray
public static ServiceProviderVoicePortalScope[] getArray(String[] values)
-
-