-
public final class DatabaseWithObjectStoresDatabase with an array of object stores.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Doubleversionprivate final List<ObjectStore>objectStores
-
Constructor Summary
Constructors Constructor Description DatabaseWithObjectStores(String name, Double version, List<ObjectStore> objectStores)
-
Method Summary
Modifier and Type Method Description final Stringcomponent1()final Doublecomponent2()final List<ObjectStore>component3()final DatabaseWithObjectStorescopy(String name, Double version, List<ObjectStore> objectStores)final StringgetName()Database name. final DoublegetVersion()Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long') final List<ObjectStore>getObjectStores()Object stores in this database. -
-
Constructor Detail
-
DatabaseWithObjectStores
DatabaseWithObjectStores(String name, Double version, List<ObjectStore> objectStores)
-
-
Method Detail
-
component1
final String component1()
-
component2
final Double component2()
-
component3
final List<ObjectStore> component3()
-
copy
final DatabaseWithObjectStores copy(String name, Double version, List<ObjectStore> objectStores)
-
getVersion
final Double getVersion()
Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')
-
getObjectStores
final List<ObjectStore> getObjectStores()
Object stores in this database.
-
-
-
-