Enum FCIInteraction.Mode

    • Enum Constant Detail

      • STATIC_PRIORITIES

        public static final FCIInteraction.Mode STATIC_PRIORITIES
        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 FCIInteraction.Mode NOMINATED_SERVICE
        FCI Interaction Mode representing the Nominated Service mode. The descriptive XML name of this mode is "nominated-service"
      • CONCATENATION

        public static final FCIInteraction.Mode CONCATENATION
        FCI Interaction Mode representing the Concatenation mode. The descriptive XML name of this mode is "concatenation"
      • PASS_THROUGH

        public static final FCIInteraction.Mode PASS_THROUGH
        FCI Interaction Mode representing the Pass-Through mode. The descriptive XML name of this mode is "pass-through"
    • Method Detail

      • values

        public static FCIInteraction.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 (FCIInteraction.Mode c : FCIInteraction.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 FCIInteraction.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 FCIInteraction.Mode fromString​(String xmlName)
        Get the FCI 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.