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

android.content.SharedPreferences Maven / Gradle / Ivy

Go to download

The Firebase Java SDK is a pure java port of the Firebase Android SDK to run in clientside java environments such as the desktop.

The newest version!
package android.content;

import java.util.Map;

public interface SharedPreferences {

    boolean contains(String key);
    String getString(String key, String defaultValue);
    Map getAll();
    long getLong(String key, long defValue);

    Editor edit();

    interface Editor {
        Editor putLong(String key, long value);
        Editor putString(String key, String value);
        boolean commit();
        void apply();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy