public static class

Control.Type

extends Object
java.lang.Object
   ↳ javax.sound.sampled.Control.Type
Known Direct Subclasses

Class Overview

An instance of the Type class represents the type of the control. Static instances are provided for the common types.

Summary

Protected Constructors
Control.Type(String name)
Constructs a new control type with the name specified.
Public Methods
final boolean equals(Object obj)
Finalizes the equals method
final int hashCode()
Finalizes the hashCode method
final String toString()
Provides the String representation of the control type.
[Expand]
Inherited Methods
From class java.lang.Object

Protected Constructors

protected Control.Type (String name)

Constructs a new control type with the name specified. The name should be a descriptive string appropriate for labelling the control in an application, such as "Gain" or "Balance."

Parameters
name the name of the new control type.

Public Methods

public final boolean equals (Object obj)

Finalizes the equals method

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

public final int hashCode ()

Finalizes the hashCode method

Returns
  • a hash code value for this object.

public final String toString ()

Provides the String representation of the control type. This String is the same name that was passed to the constructor.

Returns
  • the control type name