Uses of Class
squidpony.store.text.TextStorage
| Package | Description |
|---|---|
| squidpony.store.text |
Conversion, compression,and storage (to libGDX Preferences) using an experimental custom format as the stored type.
|
-
Uses of TextStorage in squidpony.store.text
Methods in squidpony.store.text that return TextStorage Modifier and Type Method Description TextStorageTextStorage. clear()Clears the current group of objects; recommended if you intend to store under multiple outerName keys.<T> TextStorageTextStorage. put(String innerName, T o, StringConvert converter)Prepares to store the Objectoto be retrieved withinnerNamein the current group of objects.TextStorageTextStorage. remove(String innerName)Removes one object from the current group by theinnerNameit was prepared with usingput(String, Object, StringConvert).TextStorageTextStorage. store(String outerName)Actually stores all objects that had previously been prepared withput(String, Object, StringConvert), withouterNameused as a key to retrieve any object in the current group.