public static class

AudioFileFormat.Type

extends Object
java.lang.Object
   ↳ javax.sound.sampled.AudioFileFormat.Type

Class Overview

An instance of the Type class represents one of the standard types of audio file. Static instances are provided for the common types.

Summary

Fields
public static final AudioFileFormat.Type AIFC Specifies an AIFF-C file.
public static final AudioFileFormat.Type AIFF Specifies an AIFF file.
public static final AudioFileFormat.Type AU Specifies an AU file.
public static final AudioFileFormat.Type SND Specifies a SND file.
public static final AudioFileFormat.Type WAVE Specifies a WAVE file.
Public Constructors
AudioFileFormat.Type(String name, String extension)
Constructs a file type.
Public Methods
final boolean equals(Object obj)
Finalizes the equals method
String getExtension()
Obtains the common file name extension for this file type.
final int hashCode()
Finalizes the hashCode method
final String toString()
Provides the file type's name as the String representation of the file type.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public static final AudioFileFormat.Type AIFC

Specifies an AIFF-C file.

public static final AudioFileFormat.Type AIFF

Specifies an AIFF file.

public static final AudioFileFormat.Type AU

Specifies an AU file.

public static final AudioFileFormat.Type SND

Specifies a SND file.

public static final AudioFileFormat.Type WAVE

Specifies a WAVE file.

Public Constructors

public AudioFileFormat.Type (String name, String extension)

Constructs a file type.

Parameters
name the string that names the file type
extension the string that commonly marks the file type without leading dot.

Public Methods

public final boolean equals (Object obj)

Finalizes the equals method

Parameters
obj the reference object with which to compare.
Returns
  • true if this object is the same as the obj argument; false otherwise.

public String getExtension ()

Obtains the common file name extension for this file type.

Returns
  • file type extension

public final int hashCode ()

Finalizes the hashCode method

Returns
  • a hash code value for this object.

public final String toString ()

Provides the file type's name as the String representation of the file type.

Returns
  • the file type's name