Enum INTriggerAddressTracingSelector

    • 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_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.
      • 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.
    • 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 name
        NullPointerException - 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 class Enum<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.