-
- All Superinterfaces:
- AutoCloseable
- All Known Subinterfaces:
- Clip, DataLine, Mixer, Port, SourceDataLine, TargetDataLine
public interface Line extends AutoCloseable
TheLine
interface represents a mono or multi-channel audio feed. A line is an element of the digital audio "pipeline," such as a mixer, an input or output port, or a data path into or out of a mixer.A line can have controls, such as gain, pan, and reverb. The controls themselves are instances of classes that extend the base
class. TheControl
Line
interface provides two accessor methods for obtaining the line's controls:
returns the entire set, andgetControls
returns a single control of specified type.getControl
Lines exist in various states at different times. When a line opens, it reserves system resources for itself, and when it closes, these resources are freed for other objects or applications. The
method lets you discover whether a line is open or closed. An open line need not be processing data, however. Such processing is typically initiated by subinterface methods such asisOpen()
andSourceDataLine.write
.TargetDataLine.read
You can register an object to receive notifications whenever the line's state changes. The object must implement the
interface, which consists of the single methodLineListener
. This method will be invoked when a line opens and closes (and, if it's aupdate
DataLine
, when it starts and stops).An object can be registered to listen to multiple lines. The event it receives in its
update
method will specify which line created the event, what type of event it was (OPEN
,CLOSE
,START
, orSTOP
), and how many sample frames the line had processed at the time the event occurred.Certain line operations, such as open and close, can generate security exceptions if invoked by unprivileged code when the line is a shared audio resource.
- Since:
- 1.3
- See Also:
LineEvent
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface and Description static class
Line.Info
ALine.Info
object contains information about a line.
-
Method Summary
Methods Modifier and Type Method and Description void
addLineListener(LineListener listener)
Adds a listener to this line.void
close()
Closes the line, indicating that any system resources in use by the line can be released.Control
getControl(Control.Type control)
Obtains a control of the specified type, if there is any.Control[]
getControls()
Obtains the set of controls associated with this line.Line.Info
getLineInfo()
Obtains theLine.Info
object describing this line.boolean
isControlSupported(Control.Type control)
Indicates whether the line supports a control of the specified type.boolean
isOpen()
Indicates whether the line is open, meaning that it has reserved system resources and is operational, although it might not currently be playing or capturing sound.void
open()
Opens the line, indicating that it should acquire any required system resources and become operational.void
removeLineListener(LineListener listener)
Removes the specified listener from this line's list of listeners.
-
-
-
Method Detail
-
getLineInfo
Line.Info getLineInfo()
Obtains theLine.Info
object describing this line.- Returns:
- description of the line
-
open
void open() throws LineUnavailableException
Opens the line, indicating that it should acquire any required system resources and become operational. If this operation succeeds, the line is marked as open, and anOPEN
event is dispatched to the line's listeners.Note that some lines, once closed, cannot be reopened. Attempts to reopen such a line will always result in an
LineUnavailableException
.Some types of lines have configurable properties that may affect resource allocation. For example, a
DataLine
must be opened with a particular format and buffer size. Such lines should provide a mechanism for configuring these properties, such as an additionalopen
method or methods which allow an application to specify the desired settings.This method takes no arguments, and opens the line with the current settings. For
andSourceDataLine
objects, this means that the line is opened with default settings. For aTargetDataLine
, however, the buffer size is determined when data is loaded. Since this method does not allow the application to specify any data to load, an IllegalArgumentException is thrown. Therefore, you should instead use one of theClip
open
methods provided in theClip
interface to load data into theClip
.For
DataLine
's, if theDataLine.Info
object which was used to retrieve the line, specifies at least one fully qualified audio format, the last one will be used as the default format.- Throws:
IllegalArgumentException
- if this method is called on a Clip instance.LineUnavailableException
- if the line cannot be opened due to resource restrictions.SecurityException
- if the line cannot be opened due to security restrictions.- See Also:
close()
,isOpen()
,LineEvent
,DataLine
,Clip.open(AudioFormat, byte[], int, int)
,Clip.open(AudioInputStream)
-
close
void close()
Closes the line, indicating that any system resources in use by the line can be released. If this operation succeeds, the line is marked closed and aCLOSE
event is dispatched to the line's listeners.- Specified by:
close
in interfaceAutoCloseable
- Throws:
SecurityException
- if the line cannot be closed due to security restrictions.- See Also:
open()
,isOpen()
,LineEvent
-
isOpen
boolean isOpen()
Indicates whether the line is open, meaning that it has reserved system resources and is operational, although it might not currently be playing or capturing sound.
-
getControls
Control[] getControls()
Obtains the set of controls associated with this line. Some controls may only be available when the line is open. If there are no controls, this method returns an array of length 0.- Returns:
- the array of controls
- See Also:
getControl(javax.sound.sampled.Control.Type)
-
isControlSupported
boolean isControlSupported(Control.Type control)
Indicates whether the line supports a control of the specified type. Some controls may only be available when the line is open.- Parameters:
control
- the type of the control for which support is queried- Returns:
true
if at least one control of the specified type is supported, otherwisefalse
.
-
getControl
Control getControl(Control.Type control)
Obtains a control of the specified type, if there is any. Some controls may only be available when the line is open.- Parameters:
control
- the type of the requested control- Returns:
- a control of the specified type
- Throws:
IllegalArgumentException
- if a control of the specified type is not supported- See Also:
getControls()
,isControlSupported(Control.Type control)
-
addLineListener
void addLineListener(LineListener listener)
Adds a listener to this line. Whenever the line's status changes, the listener'supdate()
method is called with aLineEvent
object that describes the change.- Parameters:
listener
- the object to add as a listener to this line- See Also:
removeLineListener(javax.sound.sampled.LineListener)
,LineListener.update(javax.sound.sampled.LineEvent)
,LineEvent
-
removeLineListener
void removeLineListener(LineListener listener)
Removes the specified listener from this line's list of listeners.- Parameters:
listener
- listener to remove- See Also:
addLineListener(javax.sound.sampled.LineListener)
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 17:35:59 Cette version de la page est en cache (à la date du 05/11/2024 17:35:59) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/sound/sampled/Line.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.