Uses of Enum Class
org.vaadin.firitin.util.WebStorage.Storage
-
Uses of WebStorage.Storage in org.vaadin.firitin.util
Modifier and TypeMethodDescriptionstatic WebStorage.Storage
Returns the enum constant of this class with the specified name.static WebStorage.Storage[]
WebStorage.Storage.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionstatic void
WebStorage.clear
(com.vaadin.flow.component.UI ui, WebStorage.Storage storage) Clears the given storage.static void
WebStorage.clear
(WebStorage.Storage storage) Clears the given storage.static void
WebStorage.getItem
(com.vaadin.flow.component.UI ui, WebStorage.Storage storage, String key, WebStorage.Callback callback) Asynchronously gets an item from the given storagestatic void
WebStorage.getItem
(WebStorage.Storage storage, String key, WebStorage.Callback callback) Asynchronously gets an item from the given storagestatic void
WebStorage.removeItem
(com.vaadin.flow.component.UI ui, WebStorage.Storage storage, String key) Removes the value associated by the given key from the Storage.localStoragestatic void
WebStorage.removeItem
(WebStorage.Storage storage, String key) Removes the value associated by the given key from the Storage.localStoragestatic void
WebStorage.setItem
(com.vaadin.flow.component.UI ui, WebStorage.Storage storage, String key, String value) Sets given key-value pair to give storage typestatic void
WebStorage.setItem
(WebStorage.Storage storage, String key, String value) Sets given key-value pair to give storage type