Uses of Class
squidpony.SquidStorage
| Package | Description |
|---|---|
| squidpony |
The default conversion, compression, and storage classes are here; they delegate to the classes in
squidpony.store.json. |
-
Uses of SquidStorage in squidpony
Methods in squidpony that return SquidStorage Modifier and Type Method Description SquidStorageSquidStorage. clear()Clears the current group of objects; recommended if you intend to store under multiple outerName keys.SquidStorageSquidStorage. put(String innerName, Object o)Prepares to store the Objectoto be retrieved withinnerNamein the current group of objects.SquidStorageSquidStorage. remove(String innerName)Removes one object from the current group by theinnerNameit was prepared with usingput(String, Object).SquidStorageSquidStorage. store(String outerName)Actually stores all objects that had previously been prepared withput(String, Object), withouterNameused as a key to retrieve any object in the current group.