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 TextStorage
TextStorage. clear()
Clears the current group of objects; recommended if you intend to store under multiple outerName keys.<T> TextStorage
TextStorage. put(String innerName, T o, StringConvert converter)
Prepares to store the Objecto
to be retrieved withinnerName
in the current group of objects.TextStorage
TextStorage. remove(String innerName)
Removes one object from the current group by theinnerName
it was prepared with usingput(String, Object, StringConvert)
.TextStorage
TextStorage. store(String outerName)
Actually stores all objects that had previously been prepared withput(String, Object, StringConvert)
, withouterName
used as a key to retrieve any object in the current group.