java.lang.Object
javax.sound.sampled.LineEvent.Type
- Enclosing class:
LineEvent
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:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final LineEvent.Type
A type of event that is sent when a line closes, freeing the system resources it had obtained when it was opened.static final LineEvent.Type
A type of event that is sent when a line opens, reserving system resources for itself.static final LineEvent.Type
A type of event that is sent when a line begins to engage in active input or output of audio data in response to astart
request.static final LineEvent.Type
A type of event that is sent when a line ceases active input or output of audio data in response to astop
request, or because the end of media has been reached. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether the specified object is equal to this event type, returningtrue
if the objects are the same.final int
hashCode()
Returns a hash code value for this event type.toString()
Returns type's name as the string representation of the event type.
-
Field Details
-
OPEN
A type of event that is sent when a line opens, reserving system resources for itself.- See Also:
-
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:
-
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 astart
request.- See Also:
-
STOP
A type of event that is sent when a line ceases active input or output of audio data in response to astop
request, or because the end of media has been reached.- See Also:
-
-
Constructor Details
-
Type
Constructs a new event type.- Parameters:
name
- name of the type
-
-
Method Details
-
equals
Indicates whether the specified object is equal to this event type, returningtrue
if the objects are the same. -
hashCode
public final int hashCode()Returns a hash code value for this event type. -
toString
Returns type's name as the string representation of the event type.
-