Enum ContextType

    • Enum Constant Detail

      • MIDDLE_OF_TEXT

        public static final ContextType MIDDLE_OF_TEXT
      • BEGIN_SENTENCE

        public static final ContextType BEGIN_SENTENCE
      • STANDALONE

        public static final ContextType STANDALONE
      • UI_LIST_OR_MENU

        public static final ContextType UI_LIST_OR_MENU
    • Method Detail

      • values

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

        public static ContextType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • fromString

        public static ContextType fromString​(java.lang.String s)