Class InputMode


  • public class InputMode
    extends java.lang.Object
    Specifies the input mode of FreeTTS.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static InputMode FILE
      Indicates that the input is from a file.
      static InputMode INTERACTIVE
      Indicates that the input is from the keyboard.
      static InputMode LINES
      Indicates that the input is a set of lines in a file..
      static InputMode NONE
      Indicates that there is no input mode
      static InputMode TEXT
      Indicates that the input is from text.
      static InputMode URL
      Indicates that the input is from a URL.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • NONE

        public static final InputMode NONE
        Indicates that there is no input mode
      • FILE

        public static final InputMode FILE
        Indicates that the input is from a file.
      • TEXT

        public static final InputMode TEXT
        Indicates that the input is from text.
      • URL

        public static final InputMode URL
        Indicates that the input is from a URL.
      • LINES

        public static final InputMode LINES
        Indicates that the input is a set of lines in a file..
      • INTERACTIVE

        public static final InputMode INTERACTIVE
        Indicates that the input is from the keyboard.
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object