KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > sound > sampled > DataLine.Info

javax.sound.sampled
Class DataLine.Info

java.lang.Object
  extended by javax.sound.sampled.Line.Info
      extended by javax.sound.sampled.DataLine.Info
Enclosing interface:
DataLine
See Also:
Mixer.getLine(Line.Info), Clip, TargetDataLine, SourceDataLine

public DataLine.Info(Class<?> lineClass,
                     AudioFormat format)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public DataLine.Info(Class<?> lineClass,
                     AudioFormat format,
                     int bufferSize)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public DataLine.Info(Class<?> lineClass,
                     AudioFormat[] formats,
                     int minBufferSize,
                     int maxBufferSize)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public AudioFormat[] getFormats()
See Also:
isFormatSupported(AudioFormat), NOT_SPECIFIED
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getMaxBufferSize()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getMinBufferSize()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean isFormatSupported(AudioFormat format)
See Also:
AudioFormat.matches(javax.sound.sampled.AudioFormat), getFormats()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean matches(Line.Info info)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String toString()
See Also:
Line.Info
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags