FileDocCategorySizeDatePackage
OnObbStateChangeListener.javaAPI DocAndroid 5.1 API641Sat Mar 14 14:09:38 GMT 2015android.os.storage

OnObbStateChangeListener.java

package android.os.storage;
public abstract class OnObbStateChangeListener
{
public  OnObbStateChangeListener() { throw new RuntimeException("Stub!"); }
public  void onObbStateChange(java.lang.String path, int state) { throw new RuntimeException("Stub!"); }
public static final int ERROR_ALREADY_MOUNTED = 24;
public static final int ERROR_COULD_NOT_MOUNT = 21;
public static final int ERROR_COULD_NOT_UNMOUNT = 22;
public static final int ERROR_INTERNAL = 20;
public static final int ERROR_NOT_MOUNTED = 23;
public static final int ERROR_PERMISSION_DENIED = 25;
public static final int MOUNTED = 1;
public static final int UNMOUNTED = 2;
}