API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.sound.sampled. DataLine.Info View Source
Author(s)
Kara Kytle
Since
1.3
Version
1.34, 05/11/17
Serial
Hierarchy
 Object
      Line.Info
          DataLine.Info
Implements
Subclasses
Description
publicstatic class DataLine.Info
  Besides the class information inherited from its superclass, DataLine.Info provides additional information specific to data lines.
See also:    Line.Info
Constructors
public DataLine.Info (Class<Object> lineClass, AudioFormat format)
  Constructs a data line's info object from the specified information, which includes a single audio format.
public DataLine.Info (Class<Object> lineClass, AudioFormat formats, int minBufferSize, int maxBufferSize)
  Constructs a data line's info object from the specified information, which includes a set of supported audio formats and a range for the buffer size.
public DataLine.Info (Class<Object> lineClass, AudioFormat format, int bufferSize)
  Constructs a data line's info object from the specified information, which includes a single audio format and a desired buffer size.
Methods
Hide/Show inherited methods
public AudioFormat getFormats ()
  Obtains a set of audio formats supported by the data line.
public Class<Object> getLineClass () [Inherited From Line.Info]
  Obtains the class of the line that this Line.Info object describes.
public int getMaxBufferSize ()
  Obtains the maximum buffer size supported by the data line.
public int getMinBufferSize ()
  Obtains the minimum buffer size supported by the data line.
public boolean isFormatSupported (AudioFormat format)
  Indicates whether this data line supports a particular audio format.
public boolean matches (Info info) [Overrides Line.Info]
  Determines whether the specified info object matches this one.
public String toString () [Overrides Line.Info]
  Obtains a textual description of the data line info.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar