elemental2.webstorage.Storage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elemental2-webstorage Show documentation
Show all versions of elemental2-webstorage Show documentation
Thin Java abstractions for the native Web Storage APIs.
package elemental2.webstorage;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public interface Storage {
void clear();
String getItem(String key);
@JsProperty
int getLength();
String key(int index);
void removeItem(String key);
void setItem(String key, String data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy