Package com.sun.speech.freetts
Class InputMode
- java.lang.Object
-
- com.sun.speech.freetts.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 modestatic 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()
-
-
-
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.
-
-