On this page
Class LineEvent.Type
- java.lang.Object
-
- javax.sound.sampled.LineEvent.Type
- Enclosing class:
- LineEvent
public static class LineEvent.Type
extends Object
The LineEvent.Type inner class identifies what kind of event occurred on a line. Static instances are provided for the common types (OPEN, CLOSE, START, and STOP).
- See Also:
-
LineEvent.getType()
Fields
Modifier and Type | Field | Description |
---|---|---|
static LineEvent.Type |
CLOSE |
A type of event that is sent when a line closes, freeing the system resources it had obtained when it was opened. |
static LineEvent.Type |
OPEN |
A type of event that is sent when a line opens, reserving system resources for itself. |
static LineEvent.Type |
START |
A type of event that is sent when a line begins to engage in active input or output of audio data in response to a |
static LineEvent.Type |
STOP |
A type of event that is sent when a line ceases active input or output of audio data in response to a |
Constructors
Methods
Modifier and Type | Method | Description |
---|---|---|
boolean |
equals(Object obj) |
Indicates whether the specified object is equal to this event type, returning |
int |
hashCode() |
Returns a hash code value for this event type. |
String |
toString() |
Returns the type name as the string representation. |
Methods declared in class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Fields
OPEN
public static final LineEvent.Type OPEN
A type of event that is sent when a line opens, reserving system resources for itself.
- See Also:
CLOSE
,Line.open()
CLOSE
public static final LineEvent.Type CLOSE
A type of event that is sent when a line closes, freeing the system resources it had obtained when it was opened.
- See Also:
OPEN
,Line.close()
START
public static final LineEvent.Type START
A type of event that is sent when a line begins to engage in active input or output of audio data in response to a start
request.
- See Also:
STOP
,DataLine.start()
STOP
public static final LineEvent.Type STOP
A type of event that is sent when a line ceases active input or output of audio data in response to a stop
request, or because the end of media has been reached.
- See Also:
START
,DataLine.stop()
Constructors
Type
protected Type(String name)
Constructs a new event type.
- Parameters:
name
- name of the type
Methods
equals
public final boolean equals(Object obj)
Indicates whether the specified object is equal to this event type, returning true
if the objects are the same.
- Overrides:
equals
in classObject
- Parameters:
obj
- the reference object with which to compare- Returns:
true
if the specified object is equal to this event type;false
otherwise- See Also:
Object.hashCode()
,HashMap
hashCode
public final int hashCode()
Returns a hash code value for this event type.
- Overrides:
hashCode
in classObject
- Returns:
- a hash code value for this event type
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
toString
public String toString()
Returns the type name as the string representation.
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/sound/sampled/LineEvent.Type.html