Class BooleanControl.Type
java.lang.Object
javax.sound.sampled.Control.Type
javax.sound.sampled.BooleanControl.Type
- Enclosing class:
BooleanControl
An instance of the
BooleanControl.Type class identifies one kind
of boolean control. Static instances are provided for the common types.- Since:
- 1.3
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final BooleanControl.TypeRepresents a control for whether reverberation is applied to a line.static final BooleanControl.TypeRepresents a control for the mute status of a line. -
Constructor Summary
Constructors -
Method Summary
Methods declared in class Control.Type
equals, hashCode, toStringModifier and TypeMethodDescriptionfinal booleanIndicates whether the specified object is equal to this control type, returningtrueif the objects are the same.final inthashCode()Returns a hash code value for this control type.final StringtoString()Returns type's name as the string representation of the control type.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
MUTE
Represents a control for the mute status of a line. Note that mute status does not affect gain. -
APPLY_REVERB
Represents a control for whether reverberation is applied to a line. Note that the status of this control not affect the reverberation settings for a line, but does affect whether these settings are used.
-
-
Constructor Details
-
Type
Constructs a new boolean control type.- Parameters:
name- the name of the new boolean control type
-