public enum INTriggerAddressTracingSelector extends Enum<INTriggerAddressTracingSelector>
Enum Constant and Description |
---|
ADDITIONAL_CALLING_PARTY_NUMBER
Selector for the InitialDP Additional Calling Party Number parameter.
|
CALLED_PARTY_BCD_NUMBER
Selector for the InitialDP Called Party BCD Number parameter.
|
CALLED_PARTY_NUMBER
Selector for the InitialDP Called Party Number parameter.
|
CALLING_PARTY_NUMBER
Selector for the InitialDP Calling Party Number parameter or InitialDPSMS Calling Party Number parameter.
|
DESTINATION_SUBSCRIBER_NUMBER
Selector for the InitialDPSMS Called Party Number parameter.
|
LOCATION_NUMBER
Selector for the InitialDP Location Number parameter.
|
ORIGINAL_CALLED_PARTY_ID
Selector for the InitialDP Original Called Party ID parameter.
|
REDIRECTING_PARTY_ID
Selector for the InitialDP Redirecting Party ID parameter.
|
SMSC_ADDRESS
Selector for the InitialDPSMS SMSC Address parameter.
|
Modifier and Type | Method and Description |
---|---|
static INTriggerAddressTracingSelector |
fromString(String s)
Get a TriggerAddressTracingSelector from the string version of a selector.
|
String |
toString()
Get a string version of this selector.
|
static INTriggerAddressTracingSelector |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static INTriggerAddressTracingSelector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final INTriggerAddressTracingSelector CALLING_PARTY_NUMBER
public static final INTriggerAddressTracingSelector CALLED_PARTY_NUMBER
public static final INTriggerAddressTracingSelector CALLED_PARTY_BCD_NUMBER
public static final INTriggerAddressTracingSelector REDIRECTING_PARTY_ID
public static final INTriggerAddressTracingSelector LOCATION_NUMBER
public static final INTriggerAddressTracingSelector ORIGINAL_CALLED_PARTY_ID
public static final INTriggerAddressTracingSelector ADDITIONAL_CALLING_PARTY_NUMBER
public static final INTriggerAddressTracingSelector DESTINATION_SUBSCRIBER_NUMBER
public static final INTriggerAddressTracingSelector SMSC_ADDRESS
public static INTriggerAddressTracingSelector[] values()
for (INTriggerAddressTracingSelector c : INTriggerAddressTracingSelector.values()) System.out.println(c);
public static INTriggerAddressTracingSelector valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<INTriggerAddressTracingSelector>
public static INTriggerAddressTracingSelector fromString(String s)
s
- the string.IllegalArgumentException
- if the string argument does not correspond
to the string value of one of the selectors.