Enum ApplicationSourceType

    • Enum Constant Detail

      • REPLY_RECOMMENDATION

        public static final ApplicationSourceType REPLY_RECOMMENDATION
        Enumeration : REPLY_RECOMMENDATION
      • ARTICLE_RECOMMENDATION

        public static final ApplicationSourceType ARTICLE_RECOMMENDATION
        Enumeration : ARTICLE_RECOMMENDATION
      • UTTERANCE_RECOMMENDATION

        public static final ApplicationSourceType UTTERANCE_RECOMMENDATION
        Enumeration : UTTERANCE_RECOMMENDATION
      • EAR_FOR_CONVERSATION

        public static final ApplicationSourceType EAR_FOR_CONVERSATION
        Enumeration : EAR_FOR_CONVERSATION
      • USE_CASE_EXPLORER

        public static final ApplicationSourceType USE_CASE_EXPLORER
        Enumeration : USE_CASE_EXPLORER
    • Method Detail

      • values

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

        public static ApplicationSourceType 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