Lines Matching defs:file

8  * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
61 * Obtains the audio file format of the input stream provided. The stream must
62 * point to valid audio file data. In general, audio file providers may
69 * @param stream the input stream from which file format information should be
71 * @return an <code>AudioFileFormat</code> object describing the audio file format
73 * file data recognized by the system
82 * Obtains the audio file format of the URL provided. The URL must
83 * point to valid audio file data.
84 * @param url the URL from which file format information should be
86 * @return an <code>AudioFileFormat</code> object describing the audio file format
88 * file data recognized by the system
95 * Obtains the audio file format of the File provided. The File must
96 * point to valid audio file data.
97 * @param file the File from which file format information should be
99 * @return an <code>AudioFileFormat</code> object describing the audio file format
101 * file data recognized by the system
104 abstract public AudioFileFormat getAudioFileFormat(File file) throws UnsupportedAudioFileException, IOException;
109 * point to valid audio file data. In general, audio file providers may
118 * @return an <code>AudioInputStream</code> object based on the audio file data contained
121 * file data recognized by the system
131 * point to valid audio file data.
134 * @return an <code>AudioInputStream</code> object based on the audio file data pointed
137 * file data recognized by the system
145 * point to valid audio file data.
146 * @param file the File for which the <code>AudioInputStream</code> should be
148 * @return an <code>AudioInputStream</code> object based on the audio file data pointed
151 * file data recognized by the system
154 abstract public AudioInputStream getAudioInputStream(File file) throws UnsupportedAudioFileException, IOException;