public static class

LineEvent.Type

extends Object
java.lang.Object
   ↳ javax.sound.sampled.LineEvent.Type

Class Overview

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

Summary

Fields
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.
public static final LineEvent.Type OPEN A type of event that is sent when a line opens, reserving system resources for itself.
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.
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.
Protected Constructors
LineEvent.Type(String name)
Constructs a new event type.
Public Methods
final boolean equals(Object obj)
Indicates whether the specified object is equal to this event type, returning true if the objects are identical.
final int hashCode()
Finalizes the hashcode method.
String toString()
Returns the type name as the string representation.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

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

public static final LineEvent.Type OPEN

A type of event that is sent when a line opens, reserving system resources for itself.

See Also

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

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

Protected Constructors

protected LineEvent.Type (String name)

Constructs a new event type.

Parameters
name name of the type

Public Methods

public final boolean equals (Object obj)

Indicates whether the specified object is equal to this event type, returning true if the objects are identical.

Parameters
obj the reference object with which to compare
Returns
  • true if this event type is the same as obj; false otherwise

public final int hashCode ()

Finalizes the hashcode method.

Returns
  • a hash code value for this object.

public String toString ()

Returns the type name as the string representation.

Returns
  • a string representation of the object.