- java.lang.Object
- 
- javax.sound.sampled.AudioFileFormat.Type
 
- 
- Enclosing class:
- AudioFileFormat
 
 public static class AudioFileFormat.Type extends Object An instance of theTypeclass represents one of the standard types of audio file. Static instances are provided for the common types.
- 
- 
Field SummaryFields Modifier and Type Field Description static AudioFileFormat.TypeAIFCSpecifies an AIFF-C file.static AudioFileFormat.TypeAIFFSpecifies an AIFF file.static AudioFileFormat.TypeAUSpecifies an AU file.static AudioFileFormat.TypeSNDSpecifies a SND file.static AudioFileFormat.TypeWAVESpecifies a WAVE file.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)Indicates whether the specified object is equal to this file type, returningtrueif the objects are equal.StringgetExtension()Obtains the common file name extension for this file type.inthashCode()Returns a hash code value for this file type.StringtoString()Provides the file type's name as theStringrepresentation of the file type.
 
- 
- 
- 
Field Detail- 
WAVEpublic static final AudioFileFormat.Type WAVE Specifies a WAVE file.
 - 
AUpublic static final AudioFileFormat.Type AU Specifies an AU file.
 - 
AIFFpublic static final AudioFileFormat.Type AIFF Specifies an AIFF file.
 - 
AIFCpublic static final AudioFileFormat.Type AIFC Specifies an AIFF-C file.
 - 
SNDpublic static final AudioFileFormat.Type SND Specifies a SND file.
 
- 
 - 
Method Detail- 
equalspublic final boolean equals(Object obj) Indicates whether the specified object is equal to this file type, returningtrueif the objects are equal.- Overrides:
- equalsin class- Object
- Parameters:
- obj- the reference object with which to compare
- Returns:
- trueif the specified object is equal to this file type;- falseotherwise
- See Also:
- Object.hashCode(),- HashMap
 
 - 
hashCodepublic final int hashCode() Returns a hash code value for this file type.- Overrides:
- hashCodein class- Object
- Returns:
- a hash code value for this file type
- See Also:
- Object.equals(java.lang.Object),- System.identityHashCode(java.lang.Object)
 
 - 
toStringpublic final String toString() Provides the file type's name as theStringrepresentation of the file type.
 - 
getExtensionpublic String getExtension() Obtains the common file name extension for this file type.- Returns:
- file type extension
 
 
- 
 
-