![JAR search and dependency download from the Maven repository](/logo.png)
android.os.FileObserver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
package android.os;
public abstract class FileObserver
{
public FileObserver(java.lang.String path) { throw new RuntimeException("Stub!"); }
public FileObserver(java.lang.String path, int mask) { throw new RuntimeException("Stub!"); }
protected void finalize() { throw new RuntimeException("Stub!"); }
public void startWatching() { throw new RuntimeException("Stub!"); }
public void stopWatching() { throw new RuntimeException("Stub!"); }
public abstract void onEvent(int event, java.lang.String path);
public static final int ACCESS = 1;
public static final int MODIFY = 2;
public static final int ATTRIB = 4;
public static final int CLOSE_WRITE = 8;
public static final int CLOSE_NOWRITE = 16;
public static final int OPEN = 32;
public static final int MOVED_FROM = 64;
public static final int MOVED_TO = 128;
public static final int CREATE = 256;
public static final int DELETE = 512;
public static final int DELETE_SELF = 1024;
public static final int MOVE_SELF = 2048;
public static final int ALL_EVENTS = 4095;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy