Enum INTriggerAddressTracingSelector
- java.lang.Object
-
- java.lang.Enum<INTriggerAddressTracingSelector>
-
- com.opencloud.slee.resources.insis.management.INTriggerAddressTracingSelector
-
- All Implemented Interfaces:
Serializable
,Comparable<INTriggerAddressTracingSelector>
public enum INTriggerAddressTracingSelector extends Enum<INTriggerAddressTracingSelector>
IN Trigger Address Tracing Selectors are used in the SIS-IN Configuration Profile. They define which InitialDP or InitialDPSMS request parameters will be considered when attempting to find a Trigger Address Tracing Profile.
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
CALLING_PARTY_NUMBER
public static final INTriggerAddressTracingSelector CALLING_PARTY_NUMBER
Selector for the InitialDP Calling Party Number parameter or InitialDPSMS Calling Party Number parameter.
-
CALLED_PARTY_NUMBER
public static final INTriggerAddressTracingSelector CALLED_PARTY_NUMBER
Selector for the InitialDP Called Party Number parameter.
-
CALLED_PARTY_BCD_NUMBER
public static final INTriggerAddressTracingSelector CALLED_PARTY_BCD_NUMBER
Selector for the InitialDP Called Party BCD Number parameter. This parameter is only present in CAP protocols.
-
REDIRECTING_PARTY_ID
public static final INTriggerAddressTracingSelector REDIRECTING_PARTY_ID
Selector for the InitialDP Redirecting Party ID parameter.
-
LOCATION_NUMBER
public static final INTriggerAddressTracingSelector LOCATION_NUMBER
Selector for the InitialDP Location Number parameter.
-
ORIGINAL_CALLED_PARTY_ID
public static final INTriggerAddressTracingSelector ORIGINAL_CALLED_PARTY_ID
Selector for the InitialDP Original Called Party ID parameter.
-
ADDITIONAL_CALLING_PARTY_NUMBER
public static final INTriggerAddressTracingSelector ADDITIONAL_CALLING_PARTY_NUMBER
Selector for the InitialDP Additional Calling Party Number parameter.
-
DESTINATION_SUBSCRIBER_NUMBER
public static final INTriggerAddressTracingSelector DESTINATION_SUBSCRIBER_NUMBER
Selector for the InitialDPSMS Called Party Number parameter.
-
SMSC_ADDRESS
public static final INTriggerAddressTracingSelector SMSC_ADDRESS
Selector for the InitialDPSMS SMSC Address parameter.
-
-
Method Detail
-
values
public static INTriggerAddressTracingSelector[] 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 (INTriggerAddressTracingSelector c : INTriggerAddressTracingSelector.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static INTriggerAddressTracingSelector 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
-
toString
public String toString()
Get a string version of this selector. This is the name of the InitialDP parameter represented by the selector.- Overrides:
toString
in classEnum<INTriggerAddressTracingSelector>
- Returns:
- a string version of this selector.
-
fromString
public static INTriggerAddressTracingSelector fromString(String s)
Get a TriggerAddressTracingSelector from the string version of a selector.- Parameters:
s
- the string.- Returns:
- a TriggerAddressTracingSelector.
- Throws:
IllegalArgumentException
- if the string argument does not correspond to the string value of one of the selectors.
-
-