File::loadOrCreate()
Loads an object of the specified class from a file at the given path, or creates a new one if the file does not exist.
Syntax
Java
.loadOrCreate(path, cls)
Parameters
| Name | Data Type | Description |
|---|---|---|
| path | String | the path to the file from which the object is to be loaded |
| cls | Class<T> | the class of the object to be loaded |
Return
T
