Enum OnlineChargingInteraction.Mode

    • Enum Constant Detail

      • STATIC_PRIORITIES

        public static final OnlineChargingInteraction.Mode STATIC_PRIORITIES
        Online FCI Interaction Mode representing the Static Service Priorities mode. The descriptive XML name of this mode is "static-service-priorities"
      • NOMINATED_SERVICE

        public static final OnlineChargingInteraction.Mode NOMINATED_SERVICE
        Online Charging Interaction Mode representing the Nominated Service mode. The descriptive XML name of this mode is "nominated-service"
    • Method Detail

      • values

        public static OnlineChargingInteraction.Mode[] 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 (OnlineChargingInteraction.Mode c : OnlineChargingInteraction.Mode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OnlineChargingInteraction.Mode 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
      • fromString

        public static OnlineChargingInteraction.Mode fromString​(String xmlName)
        Get the Online Charging Interaction Mode from its descriptive (toString()) xml form.
        Parameters:
        xmlName - the xml name.
        Returns:
        the mode, or null if no mode with that name exists.