/*
 * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package javax.sound.sampled;

Lines often have a set of controls, such as gain and pan, that affect the audio signal passing through the line. Java Sound's Line objects let you obtain a particular control object by passing its class as the argument to a getControl method.

Because the various types of controls have different purposes and features, all of their functionality is accessed from the subclasses that define each kind of control.

Author:Kara Kytle
See Also:
Since:1.3
/** * {@link Line Lines} often have a set of controls, such as gain and pan, that * affect the audio signal passing through the line. Java Sound's {@code Line} * objects let you obtain a particular control object by passing its class as * the argument to a {@link Line#getControl(Control.Type) getControl} method. * <p> * Because the various types of controls have different purposes and features, * all of their functionality is accessed from the subclasses that define each * kind of control. * * @author Kara Kytle * @see Line#getControls * @see Line#isControlSupported * @since 1.3 */
public abstract class Control {
The control type.
/** * The control type. */
private final Type type;
Constructs a control with the specified type.
Params:
  • type – the kind of control desired
/** * Constructs a control with the specified type. * * @param type the kind of control desired */
protected Control(Type type) { this.type = type; }
Obtains the control's type.
Returns:the control's type
/** * Obtains the control's type. * * @return the control's type */
public Type getType() { return type; }
Obtains a string describing the control type and its current state.
Returns:a string representation of the control
/** * Obtains a string describing the control type and its current state. * * @return a string representation of the control */
@Override public String toString() { return new String(getType() + " Control"); }
An instance of the Type class represents the type of the control.
/** * An instance of the {@code Type} class represents the type of the control. */
public static class Type {
Type name.
/** * Type name. */
private final 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".
Params:
  • name – the name of the new control type
/** * 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". * * @param name the name of the new control type */
protected Type(String name) { this.name = name; }
Indicates whether the specified object is equal to this control type, returning true if the objects are the same.
Params:
  • obj – the reference object with which to compare
Returns:true if the specified object is equal to this control type; false otherwise
/** * Indicates whether the specified object is equal to this control type, * returning {@code true} if the objects are the same. * * @param obj the reference object with which to compare * @return {@code true} if the specified object is equal to this control * type; {@code false} otherwise */
@Override public final boolean equals(Object obj) { return super.equals(obj); }
Returns a hash code value for this control type.
Returns:a hash code value for this control type
/** * Returns a hash code value for this control type. * * @return a hash code value for this control type */
@Override public final int hashCode() { return super.hashCode(); }
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
/** * Provides the {@code String} representation of the control type. This * {@code String} is the same name that was passed to the constructor. * * @return the control type name */
@Override public final String toString() { return name; } } }