AudioFileFormat
public static class AudioFileFormat.Type extends Object
Type
class represents one of the standard types of audio file. Static instances are provided for the common types.Modifier and Type | Field | Description |
---|---|---|
static final AudioFileFormat.Type |
AIFC |
Specifies an AIFF-C file. |
static final AudioFileFormat.Type |
AIFF |
Specifies an AIFF file. |
static final AudioFileFormat.Type |
AU |
Specifies an AU file. |
static final AudioFileFormat.Type |
SND |
Specifies a SND file. |
static final AudioFileFormat.Type |
WAVE |
Specifies a WAVE file. |
Constructor | Description |
---|---|
Type |
Constructs a file type. |
Modifier and Type | Method | Description |
---|---|---|
final boolean |
equals |
Indicates whether the specified object is equal to this file type, returning true if the objects are equal. |
String |
getExtension() |
Obtains the common file name extension for this file type. |
final int |
hashCode() |
Returns a hash code value for this file type. |
final String |
toString() |
Returns type's name as the string representation of the file type. |
public static final AudioFileFormat.Type WAVE
public static final AudioFileFormat.Type AU
public static final AudioFileFormat.Type AIFF
public static final AudioFileFormat.Type AIFC
public static final AudioFileFormat.Type SND
public Type(String name, String extension)
name
- the string that names the file typeextension
- the string that commonly marks the file type without leading dotpublic final boolean equals(Object obj)
true
if the objects are equal.public final int hashCode()
public final String toString()
public String getExtension()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/sound/sampled/AudioFileFormat.Type.html