All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.os.Environment Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
package android.os;

import java.io.File;

public class Environment {
    public Environment() {
        throw new RuntimeException("Stub!");
    }

    public static java.io.File getRootDirectory() {
        throw new RuntimeException("Stub!");
    }

    public static java.io.File getDataDirectory() {
        throw new RuntimeException("Stub!");
    }

    public static java.io.File getExternalStorageDirectory() {
        throw new RuntimeException("Stub!");
    }

    public static java.io.File getExternalStoragePublicDirectory(java.lang.String type) {
        throw new RuntimeException("Stub!");
    }

    public static java.io.File getDownloadCacheDirectory() {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.String getExternalStorageState() {
        throw new RuntimeException("Stub!");
    }

    public static boolean isExternalStorageRemovable() {
        throw new RuntimeException("Stub!");
    }

    public static boolean isExternalStorageEmulated() {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.String DIRECTORY_MUSIC;
    public static java.lang.String DIRECTORY_PODCASTS;
    public static java.lang.String DIRECTORY_RINGTONES;
    public static java.lang.String DIRECTORY_ALARMS;
    public static java.lang.String DIRECTORY_NOTIFICATIONS;
    public static java.lang.String DIRECTORY_PICTURES;
    public static java.lang.String DIRECTORY_MOVIES;
    public static java.lang.String DIRECTORY_DOWNLOADS;
    public static java.lang.String DIRECTORY_DCIM;
    public static final java.lang.String MEDIA_REMOVED = "removed";
    public static final java.lang.String MEDIA_UNMOUNTED = "unmounted";
    public static final java.lang.String MEDIA_CHECKING = "checking";
    public static final java.lang.String MEDIA_NOFS = "nofs";
    public static final java.lang.String MEDIA_MOUNTED = "mounted";
    public static final java.lang.String MEDIA_MOUNTED_READ_ONLY = "mounted_ro";
    public static final java.lang.String MEDIA_SHARED = "shared";
    public static final java.lang.String MEDIA_BAD_REMOVAL = "bad_removal";
    public static final java.lang.String MEDIA_UNMOUNTABLE = "unmountable";

    public static File getDataProfilesDePackageDirectory(int userId, String packageName) {
        throw new IllegalArgumentException("STUB");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy