java.lang.Object
javax.sound.sampled.Control.Type
- Direct Known Subclasses:
- BooleanControl.Type,- CompoundControl.Type,- EnumControl.Type,- FloatControl.Type
- Enclosing class:
- Control
public static class Control.Type extends Object
An instance of the 
Type class represents the type of the control.- 
Constructor Summary
- 
Method SummaryModifier and Type Method Description booleanequals(Object obj)Indicates whether the specified object is equal to this control type, returningtrueif the objects are the same.inthashCode()Returns a hash code value for this control type.StringtoString()Provides theStringrepresentation of the control type.
- 
Constructor Details- 
TypeConstructs 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
 
 
- 
- 
Method Details- 
equalsIndicates whether the specified object is equal to this control type, returningtrueif the objects are the same.- Overrides:
- equalsin class- Object
- Parameters:
- obj- the reference object with which to compare
- Returns:
- trueif the specified object is equal to this control type;- falseotherwise
- See Also:
- Object.hashCode(),- HashMap
 
- 
hashCodepublic final int hashCode()Returns a hash code value for this control type.- Overrides:
- hashCodein class- Object
- Returns:
- a hash code value for this control type
- See Also:
- Object.equals(java.lang.Object),- System.identityHashCode(java.lang.Object)
 
- 
toStringProvides theStringrepresentation of the control type. ThisStringis the same name that was passed to the constructor.
 
-