Class Database

java.lang.Object
uk.co.sculptor.kflibjava.Database
All Implemented Interfaces:
AutoCloseable

public class Database extends Object implements AutoCloseable

Represents the Database object and is the basic object needed to create KeyedFiles.

Note: This class implements the AutoCloseable interface, meaning that an object may hold resources (such as file or socket handles) until it is closed. The close() method of an AutoCloseable object is called automatically when exiting a try-with-resources block for which the object has been declared in the resource specification header. This construction ensures prompt release, avoiding resource exhaustion exceptions and errors that may otherwise occur.
Author:
Marcos Gutierrez Batz