Boomerang
A key-value store for storing and retrieving data across different parts of your application. This interface is implemented by platform-specific classes to provide a consistent API across all platforms.
Boomerang is designed to be used in multiplatform projects and works on Android, iOS, and Desktop.
Inheritors
Functions
Retrieves a Boolean value for the given key.
Retrieves a Boomerang instance for the given key.
Retrieves a list of Boomerang instances for the given key.
Retrieves a ByteArray value for the given key.
Retrieves a Java Serializable object from the Boomerang with the given key.
Retrieves a Parcelable object from the Boomerang with the given key.
Stores a Boolean value with the given key.
Stores a Boomerang instance with the given key. This allows for nested data structures.
Stores a list of Boomerang instances with the given key. This allows for storing collections of nested data structures.
Stores a ByteArray value with the given key.
Stores a Java Serializable object in the Boomerang with the given key.
Stores a Parcelable object in the Boomerang with the given key.