FileDocCategorySizeDatePackage
AudioHandle.javaAPI DocAndroid 5.1 API1383Thu Mar 12 22:22:30 GMT 2015android.media

AudioHandle

public class AudioHandle extends Object
The AudioHandle is used by the audio framework implementation to uniquely identify a particular component of the routing topology (AudioPort or AudioPatch) It is not visible or used at the API.

Fields Summary
private final int
mId
Constructors Summary
AudioHandle(int id)

        mId = id;
    
Methods Summary
public booleanequals(java.lang.Object o)

        if (o == null || !(o instanceof AudioHandle)) {
            return false;
        }
        AudioHandle ah = (AudioHandle)o;
        return mId == ah.id();
    
public inthashCode()

        return mId;
    
intid()

        return mId;
    
public java.lang.StringtoString()

        return Integer.toString(mId);